mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-22 02:32:04 -08:00
61 lines
1.6 KiB
C#
61 lines
1.6 KiB
C#
|
/*
|
||
|
* UstTrack.cs
|
||
|
* Copyright (c) 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;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Boare.Lib.Vsq{
|
||
|
|
||
|
public class UstTrack : ICloneable {
|
||
|
public object Tag;
|
||
|
private List<UstEvent> m_events;
|
||
|
|
||
|
public UstTrack(){
|
||
|
m_events = new List<UstEvent>();
|
||
|
}
|
||
|
|
||
|
public UstEvent getEvent( int index ) {
|
||
|
return m_events[index];
|
||
|
}
|
||
|
|
||
|
public void setEvent( int index, UstEvent item ) {
|
||
|
m_events[index] = item;
|
||
|
}
|
||
|
|
||
|
public void addEvent( UstEvent item ) {
|
||
|
m_events.Add( item );
|
||
|
}
|
||
|
|
||
|
public void removeEvent( int index ) {
|
||
|
m_events.RemoveAt( index );
|
||
|
}
|
||
|
|
||
|
public int getEventCount() {
|
||
|
return m_events.Count;
|
||
|
}
|
||
|
|
||
|
public Iterator getNoteEventIterator() {
|
||
|
return new ListIterator<UstEvent>( m_events );
|
||
|
}
|
||
|
|
||
|
public object Clone() {
|
||
|
UstTrack ret = new UstTrack();
|
||
|
for ( int i = 0; i < m_events.Count; i++ ) {
|
||
|
ret.m_events[i] = (UstEvent)m_events[i].Clone();
|
||
|
}
|
||
|
return ret;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|