private void startCompile() { //Core.log.debug = true; Core.log.Open(); Core.log.Write("start compile thread"); Action dmy = updateTitle; string stPath = System.Windows.Forms.Application.StartupPath; int rendSecond = 600; if (!int.TryParse(tstbMaxRendering.Text, out rendSecond)) { rendSecond = 600; } for (int i = 1; i < args.Length; i++) { string arg = args[i]; if (!File.Exists(arg)) { continue; } title = Path.GetFileName(arg); this.Invoke(dmy); Core.log.Write(string.Format(" compile at [{0}]", args[i])); msgBox.clear(); string desfn = Path.ChangeExtension(arg, Properties.Resources.ExtensionVGM); if (tsbToVGZ.Checked) { desfn = Path.ChangeExtension(arg, Properties.Resources.ExtensionVGZ); } Core.log.Write("Call mucomMD2vgm core"); mv = new MucomMD2vgm(arg, desfn, stPath, Disp, isLoopEx, rendSecond); if (mv.Start() != 0) { isSuccess = false; break; } Core.log.Write("Return mucomMD2vgm core"); } Core.log.Write("Disp Result"); dmy = finishedCompile; this.Invoke(dmy); Core.log.Write("end compile thread"); Core.log.Close(); }
public mdvc(string[] args) { //ファイル、オプションの指定無し if (args == null || args.Length < 1) { //disp usage Console.WriteLine(msg.get("I07000")); Environment.Exit(0); } srcFn = args[0]; if (Path.GetExtension(srcFn) == "") { srcFn += ".muM"; } if (args.Length > 1) { desFn = args[1]; } else { desFn = Path.Combine(Path.GetDirectoryName(srcFn), Path.GetFileNameWithoutExtension(srcFn) + ".vgm"); } Core.log.debug = false; Core.log.Open(); Core.log.Write("start compile thread"); Assembly myAssembly = Assembly.GetEntryAssembly(); string path = System.IO.Path.GetDirectoryName(myAssembly.Location); MucomMD2vgm mv = new MucomMD2vgm(srcFn, desFn, path, Disp); int ret = mv.Start(); if (ret == 0) { Console.WriteLine(msg.get("I0000")); Console.WriteLine(msg.get("I0001")); foreach (KeyValuePair <enmChipType, ClsChip[]> kvp in mv.desVGM.chips) { foreach (ClsChip chip in kvp.Value) { List <partWork> pw = chip.lstPartWork; for (int i = 0; i < pw.Count; i++) { if (pw[i].clockCounter == 0) { continue; } Console.WriteLine(string.Format(msg.get("I0002") , pw[i].PartName //.Substring(0, 2).Replace(" ", "") + int.Parse(pw[i].PartName.Substring(2, 2)).ToString() , pw[i].chip.Name.ToUpper() , pw[i].clockCounter )); } } } } Console.WriteLine(msg.get("I0003")); foreach (string mes in msgBox.getWrn()) { Console.WriteLine(string.Format(msg.get("I0004"), mes)); } foreach (string mes in msgBox.getErr()) { Console.WriteLine(string.Format(msg.get("I0005"), mes)); } Console.WriteLine(""); Console.WriteLine(string.Format(msg.get("I0006"), msgBox.getErr().Length, msgBox.getWrn().Length)); if (mv.desVGM != null) { if (mv.desVGM.loopSamples != -1) { Console.WriteLine(string.Format(msg.get("I0007"), mv.desVGM.loopClock)); if (mv.desVGM.info.format == enmFormat.VGM) { Console.WriteLine(string.Format(msg.get("I0008") , mv.desVGM.loopSamples , mv.desVGM.loopSamples / 44100L)); } } Console.WriteLine(string.Format(msg.get("I0009"), mv.desVGM.lClock)); if (mv.desVGM.info.format == enmFormat.VGM) { Console.WriteLine(string.Format(msg.get("I0010") , mv.desVGM.dSample , mv.desVGM.dSample / 44100L)); } if (mv.desVGM.ym2612[0].pcmDataEasy != null) { Console.WriteLine(string.Format(msg.get("I0026"), mv.desVGM.ym2612[0].pcmDataEasy.Length)); } } Console.WriteLine(msg.get("I0050")); Core.log.Write("end compile thread"); Core.log.Close(); Environment.Exit(ret); }