/* * VsqMetaText/ID.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; using System.Collections.Generic; using System.Text; using System.IO; namespace Boare.Lib.Vsq { /// /// メタテキストに埋め込まれるIDを表すクラス。 /// [Serializable] public class VsqID : ICloneable { public int value; public VsqIDType type; public int IconHandle_index; public IconHandle IconHandle; public int Length; public int Note; public int Dynamics; public int PMBendDepth; public int PMBendLength; public int PMbPortamentoUse; public int DEMdecGainRate; public int DEMaccent; public int LyricHandle_index; public LyricHandle LyricHandle; public int VibratoHandle_index; public VibratoHandle VibratoHandle; public int VibratoDelay; public static VsqID EOS = new VsqID( -1 ); /// /// このインスタンスの簡易コピーを取得します。 /// /// このインスタンスの簡易コピー public object Clone() { VsqID result = new VsqID( this.value ); result.type = this.type; if ( this.IconHandle != null ) { result.IconHandle = (IconHandle)this.IconHandle.Clone(); } result.Length = this.Length; result.Note = this.Note; result.Dynamics = this.Dynamics; result.PMBendDepth = this.PMBendDepth; result.PMBendLength = this.PMBendLength; result.PMbPortamentoUse = this.PMbPortamentoUse; result.DEMdecGainRate = this.DEMdecGainRate; result.DEMaccent = this.DEMaccent; if ( this.LyricHandle != null ) { result.LyricHandle = (LyricHandle)this.LyricHandle.Clone(); } if ( this.VibratoHandle != null ) { result.VibratoHandle = (VibratoHandle)this.VibratoHandle.Clone(); } result.VibratoDelay = this.VibratoDelay; return result; } /// /// IDの番号(ID#****の****)を指定したコンストラクタ。 /// /// IDの番号 public VsqID( int a_value ) { value = a_value; } /// /// テキストファイルからのコンストラクタ /// /// 読み込み対象 /// /// 読み込んだ最後の行が返されます public VsqID( TextMemoryStream sr, int value, ref string last_line ) { string[] spl; this.value = value; this.type = VsqIDType.Unknown; this.IconHandle_index = -2; this.LyricHandle_index = -1; this.VibratoHandle_index = -1; this.Length = 0; this.Note = 0; this.Dynamics = 0; this.PMBendDepth = 0; this.PMBendLength = 0; this.PMbPortamentoUse = 0; this.DEMdecGainRate = 0; this.DEMaccent = 0; //this.LyricHandle_index = -2; //this.VibratoHandle_index = -2; this.VibratoDelay = 0; last_line = sr.readLine(); while ( !last_line.StartsWith( "[" ) ) { spl = last_line.Split( new char[] { '=' } ); switch ( spl[0] ) { case "Type": if ( spl[1] == "Anote" ) { type = VsqIDType.Anote; } else if ( spl[1] == "Singer" ) { type = VsqIDType.Singer; } else { type = VsqIDType.Unknown; } break; case "Length": this.Length = int.Parse( spl[1] ); break; case "Note#": this.Note = int.Parse( spl[1] ); break; case "Dynamics": this.Dynamics = int.Parse( spl[1] ); break; case "PMBendDepth": this.PMBendDepth = int.Parse( spl[1] ); break; case "PMBendLength": this.PMBendLength = int.Parse( spl[1] ); break; case "DEMdecGainRate": this.DEMdecGainRate = int.Parse( spl[1] ); break; case "DEMaccent": this.DEMaccent = int.Parse( spl[1] ); break; case "LyricHandle": this.LyricHandle_index = VsqHandle.HandleIndexFromString( spl[1] ); break; case "IconHandle": this.IconHandle_index = VsqHandle.HandleIndexFromString( spl[1] ); break; case "VibratoHandle": this.VibratoHandle_index = VsqHandle.HandleIndexFromString( spl[1] ); break; case "VibratoDelay": this.VibratoDelay = int.Parse( spl[1] ); break; case "PMbPortamentoUse": PMbPortamentoUse = int.Parse( spl[1] ); break; } if ( sr.peek() < 0 ) { break; } last_line = sr.readLine(); } } public override string ToString() { string ret = "{Type=" + type; switch ( type ) { case VsqIDType.Anote: ret += ", Length=" + Length; ret += ", Note#=" + Note; ret += ", Dynamics=" + Dynamics; ret += ", PMBendDepth=" + PMBendDepth ; ret += ", PMBendLength=" + PMBendLength ; ret += ", PMbPortamentoUse=" + PMbPortamentoUse ; ret += ", DEMdecGainRate=" + DEMdecGainRate ; ret += ", DEMaccent=" + DEMaccent ; if ( LyricHandle != null ) { ret += ", LyricHandle=h#" + LyricHandle_index.ToString( "0000" ) ; } if ( VibratoHandle != null ) { ret += ", VibratoHandle=h#" + VibratoHandle_index.ToString( "0000" ); ret += ", VibratoDelay=" + VibratoDelay ; } break; case VsqIDType.Singer: ret += ", IconHandle=h#" + IconHandle_index.ToString( "0000" ); break; } ret += "}"; return ret; } /// /// インスタンスをテキストファイルに出力します /// /// 出力先 public void write( TextMemoryStream sw ) { sw.writeLine( "[ID#" + value.ToString( "0000" ) + "]" ); sw.writeLine( "Type=" + type ); switch( type ){ case VsqIDType.Anote: sw.writeLine( "Length=" + Length ); sw.writeLine( "Note#=" + Note ); sw.writeLine( "Dynamics=" + Dynamics ); sw.writeLine( "PMBendDepth=" + PMBendDepth ); sw.writeLine( "PMBendLength=" + PMBendLength ); sw.writeLine( "PMbPortamentoUse=" + PMbPortamentoUse ); sw.writeLine( "DEMdecGainRate=" + DEMdecGainRate ); sw.writeLine( "DEMaccent=" + DEMaccent ); if ( LyricHandle != null ) { sw.writeLine( "LyricHandle=h#" + LyricHandle_index.ToString( "0000" ) ); } if ( VibratoHandle != null ) { sw.writeLine( "VibratoHandle=h#" + VibratoHandle_index.ToString( "0000" ) ); sw.writeLine( "VibratoDelay=" + VibratoDelay ); } break; case VsqIDType.Singer: sw.writeLine( "IconHandle=h#" + IconHandle_index.ToString( "0000" ) ); break; } } /// /// VsqIDを構築するテストを行います。 /// /// テストに成功すればtrue、そうでなければfalseを返します public static bool test() { string fpath = Path.GetTempFileName(); using ( StreamWriter sw = new StreamWriter( fpath, false, Encoding.Unicode ) ) { sw.WriteLine( "Type=Anote" ); sw.WriteLine( "Length=320" ); sw.WriteLine( "Note#=67" ); sw.WriteLine( "Dynamics=64" ); sw.WriteLine( "PMBendDepth=8" ); sw.WriteLine( "PMBendLength=1" ); sw.WriteLine( "PMbPortamentoUse=1" ); sw.WriteLine( "DEMdecGainRate=50" ); sw.WriteLine( "DEMaccent=50" ); sw.WriteLine( "LyricHandle=h#0111" ); sw.WriteLine( "[ID#0104]" ); } string last_line = ""; bool result; using ( TextMemoryStream sr = new TextMemoryStream( fpath, Encoding.Unicode ) ) { VsqID vsqID = new VsqID( sr, 103, ref last_line ); if ( vsqID.type == VsqIDType.Anote && vsqID.Length == 320 && vsqID.Note == 67 && vsqID.Dynamics == 64 && vsqID.PMBendDepth == 8 && vsqID.PMBendLength == 1 && vsqID.PMbPortamentoUse == 1 && vsqID.DEMdecGainRate == 50 && vsqID.DEMaccent == 50 && vsqID.LyricHandle_index == 111 && last_line == "[ID#0104]" ) { result = true; } else { result = false; } } File.Delete( fpath ); return result; } } }