mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-22 10:42:03 -08:00
65 lines
1.8 KiB
C#
65 lines
1.8 KiB
C#
/*
|
|
* TimeSigTableEntry.cs
|
|
* Copyright (c) 2008-2009 kbinani
|
|
*
|
|
* This file is part of Boare.Lib.Vsq.
|
|
*
|
|
* Boare.Lib.Vsq is free software; you can redistribute it and/or
|
|
* modify it under the terms of the BSD License.
|
|
*
|
|
* Boare.Lib.Vsq is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
using System;
|
|
|
|
namespace Boare.Lib.Vsq{
|
|
|
|
[Serializable]
|
|
public class TimeSigTableEntry : IComparable<TimeSigTableEntry>, ICloneable {
|
|
/// <summary>
|
|
/// クロック数
|
|
/// </summary>
|
|
public int Clock;
|
|
/// <summary>
|
|
/// 拍子の分子
|
|
/// </summary>
|
|
public int Numerator;
|
|
/// <summary>
|
|
/// 拍子の分母
|
|
/// </summary>
|
|
public int Denominator;
|
|
/// <summary>
|
|
/// 何小節目か
|
|
/// </summary>
|
|
public int BarCount;
|
|
|
|
public TimeSigTableEntry(
|
|
int clock,
|
|
int numerator,
|
|
int denominator,
|
|
int bar_count ) {
|
|
Clock = clock;
|
|
Numerator = numerator;
|
|
Denominator = denominator;
|
|
BarCount = bar_count;
|
|
}
|
|
|
|
public TimeSigTableEntry() {
|
|
}
|
|
|
|
public override string ToString() {
|
|
return "{Clock=" + Clock + ", Numerator=" + Numerator + ", Denominator=" + Denominator + ", BarCount=" + BarCount + "}";
|
|
}
|
|
|
|
public object Clone() {
|
|
return new TimeSigTableEntry( Clock, Numerator, Denominator, BarCount );
|
|
}
|
|
|
|
public int CompareTo( TimeSigTableEntry item ) {
|
|
return this.BarCount - item.BarCount;
|
|
}
|
|
}
|
|
|
|
}
|