1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game/Audio/SampleInfo.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.2 KiB
C#
Raw Normal View History

2019-06-30 20:58:30 +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.
2018-04-13 17:19:50 +08:00
2020-11-19 18:51:09 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
2020-11-19 18:51:09 +08:00
using System.Linq;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Audio
{
2019-06-30 20:58:30 +08:00
/// <summary>
/// Describes a gameplay sample.
/// </summary>
2020-11-19 18:51:09 +08:00
public class SampleInfo : ISampleInfo, IEquatable<SampleInfo>
{
private readonly string[] sampleNames;
2018-04-13 17:19:50 +08:00
public SampleInfo(params string[] sampleNames)
{
this.sampleNames = sampleNames;
Array.Sort(sampleNames);
}
public IEnumerable<string> LookupNames => sampleNames;
2019-06-30 20:58:30 +08:00
2020-01-20 22:59:21 +08:00
public int Volume { get; } = 100;
2020-11-19 18:51:09 +08:00
public override int GetHashCode()
{
return HashCode.Combine(
StructuralComparisons.StructuralEqualityComparer.GetHashCode(sampleNames),
Volume);
2020-11-19 18:51:09 +08:00
}
public bool Equals(SampleInfo? other)
2020-11-19 18:51:09 +08:00
=> other != null && sampleNames.SequenceEqual(other.sampleNames);
public override bool Equals(object? obj)
2020-11-19 18:51:09 +08:00
=> obj is SampleInfo other && Equals(other);
}
}