2019-06-30 12:58:30 +00:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 08:43:03 +00:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2020-11-19 10:51:09 +00:00
|
|
|
using System;
|
2020-12-03 22:19:26 +00:00
|
|
|
using System.Collections;
|
2018-07-02 05:18:41 +00:00
|
|
|
using System.Collections.Generic;
|
2020-11-19 10:51:09 +00:00
|
|
|
using System.Linq;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Audio
|
|
|
|
{
|
2019-06-30 12:58:30 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Describes a gameplay sample.
|
|
|
|
/// </summary>
|
2020-11-19 10:51:09 +00:00
|
|
|
public class SampleInfo : ISampleInfo, IEquatable<SampleInfo>
|
2018-04-13 09:19:50 +00:00
|
|
|
{
|
2020-10-29 07:32:03 +00:00
|
|
|
private readonly string[] sampleNames;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2020-10-29 07:32:03 +00:00
|
|
|
public SampleInfo(params string[] sampleNames)
|
2018-07-02 05:18:41 +00:00
|
|
|
{
|
2020-10-29 07:32:03 +00:00
|
|
|
this.sampleNames = sampleNames;
|
2020-12-03 22:19:26 +00:00
|
|
|
Array.Sort(sampleNames);
|
2018-07-02 05:35:03 +00:00
|
|
|
}
|
2018-07-02 05:18:41 +00:00
|
|
|
|
2020-10-29 07:32:03 +00:00
|
|
|
public IEnumerable<string> LookupNames => sampleNames;
|
2019-06-30 12:58:30 +00:00
|
|
|
|
2020-01-20 14:59:21 +00:00
|
|
|
public int Volume { get; } = 100;
|
2020-11-19 10:51:09 +00:00
|
|
|
|
|
|
|
public override int GetHashCode()
|
|
|
|
{
|
2020-12-03 22:19:26 +00:00
|
|
|
return HashCode.Combine(
|
|
|
|
StructuralComparisons.StructuralEqualityComparer.GetHashCode(sampleNames),
|
|
|
|
Volume);
|
2020-11-19 10:51:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public bool Equals(SampleInfo other)
|
|
|
|
=> other != null && sampleNames.SequenceEqual(other.sampleNames);
|
|
|
|
|
|
|
|
public override bool Equals(object obj)
|
|
|
|
=> obj is SampleInfo other && Equals(other);
|
2018-04-13 09:19:50 +00:00
|
|
|
}
|
|
|
|
}
|