2019-03-12 19:31:15 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2019-03-12 19:31:15 +08:00
|
|
|
using System;
|
|
|
|
using System.Globalization;
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps.Formats
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Helper methods to parse from string to number and perform very basic validation.
|
|
|
|
/// </summary>
|
|
|
|
public static class Parsing
|
|
|
|
{
|
2020-06-24 17:53:52 +08:00
|
|
|
public const int MAX_COORDINATE_VALUE = 131072;
|
2019-03-12 19:31:15 +08:00
|
|
|
|
|
|
|
public const double MAX_PARSE_VALUE = int.MaxValue;
|
|
|
|
|
2019-03-13 10:30:33 +08:00
|
|
|
public static float ParseFloat(string input, float parseLimit = (float)MAX_PARSE_VALUE)
|
2019-03-12 19:31:15 +08:00
|
|
|
{
|
2021-10-27 12:04:41 +08:00
|
|
|
float output = float.Parse(input, CultureInfo.InvariantCulture);
|
2019-03-13 10:30:33 +08:00
|
|
|
|
|
|
|
if (output < -parseLimit) throw new OverflowException("Value is too low");
|
|
|
|
if (output > parseLimit) throw new OverflowException("Value is too high");
|
|
|
|
|
|
|
|
if (float.IsNaN(output)) throw new FormatException("Not a number");
|
2019-03-12 19:31:15 +08:00
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static double ParseDouble(string input, double parseLimit = MAX_PARSE_VALUE)
|
|
|
|
{
|
2021-10-27 12:04:41 +08:00
|
|
|
double output = double.Parse(input, CultureInfo.InvariantCulture);
|
2019-03-13 10:30:33 +08:00
|
|
|
|
|
|
|
if (output < -parseLimit) throw new OverflowException("Value is too low");
|
|
|
|
if (output > parseLimit) throw new OverflowException("Value is too high");
|
|
|
|
|
|
|
|
if (double.IsNaN(output)) throw new FormatException("Not a number");
|
2019-03-12 19:31:15 +08:00
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int ParseInt(string input, int parseLimit = (int)MAX_PARSE_VALUE)
|
|
|
|
{
|
2021-10-27 12:04:41 +08:00
|
|
|
int output = int.Parse(input, CultureInfo.InvariantCulture);
|
2019-03-13 10:30:33 +08:00
|
|
|
|
|
|
|
if (output < -parseLimit) throw new OverflowException("Value is too low");
|
|
|
|
if (output > parseLimit) throw new OverflowException("Value is too high");
|
2019-03-12 19:31:15 +08:00
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|