1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-12-02 19:17:16 +01:00
VoxCharger/Sources/Effects/BitCrusher.cs
2020-04-19 03:24:48 +07:00

81 lines
2.2 KiB
C#

using System;
using System.Linq;
namespace VoxCharger
{
public partial class Effect
{
public class BitCrusher : Effect
{
public float Mix { get; set; }
public int Reduction { get; set; }
public BitCrusher(float mix, int reduction)
: base(FxType.BitCrusher)
{
Mix = mix;
Reduction = reduction;
}
private BitCrusher()
: base(FxType.None)
{
}
public static new BitCrusher FromVox(string data)
{
var bitCrusher = new BitCrusher();
var prop = data.Trim().Split(',').Select(p => p.Trim()).ToArray();
if (!Enum.TryParse(prop[0], out FxType type) || type != FxType.BitCrusher)
return bitCrusher;
if (prop.Length != 3)
return bitCrusher;
try
{
bitCrusher.Type = type;
bitCrusher.Mix = float.Parse(prop[1]);
bitCrusher.Reduction = int.Parse(prop[2]);
}
catch (Exception)
{
bitCrusher.Type = FxType.None;
}
return bitCrusher;
}
public static new BitCrusher FromKsh(KshDefinition definition)
{
var bitCrusher = new BitCrusher();
try
{
definition.GetValue("mix", out float mix);
definition.GetValue("reduction", out int samples);
bitCrusher.Mix = mix;
bitCrusher.Reduction = samples;
bitCrusher.Type = FxType.BitCrusher;
}
catch (Exception)
{
bitCrusher.Type = FxType.None;
}
return bitCrusher;
}
public override string ToString()
{
if (Type == FxType.None)
return base.ToString();
return $"{(int)Type},\t{Mix:0.00},\t{Reduction}";
}
}
}
}