├── .gitattributes ├── .gitignore ├── ConvFMML ├── ConvFMML.sln └── ConvFMML │ ├── App.config │ ├── Common.cs │ ├── ConvFMML.csproj │ ├── ConvFMML.ico │ ├── Converter │ ├── IntermediateToCustomMMLConverter.cs │ ├── IntermediateToFMP7MMLConverter.cs │ ├── IntermediateToFMPMMLConverter.cs │ ├── IntermediateToMMLConverter.cs │ ├── IntermediateToMUCOM88MMLConverter.cs │ ├── IntermediateToMXDRVMMLConverter.cs │ ├── IntermediateToMml2vgmMMLConverter.cs │ ├── IntermediateToNRTDRVMMLConverter.cs │ ├── IntermediateToPMDMMLConverter.cs │ ├── LengthContainer.cs │ ├── LengthElement.cs │ └── MIDIToIntermediateConverter.cs │ ├── Data │ ├── Intermediate │ │ ├── Event │ │ │ ├── ChangeEvent.cs │ │ │ ├── Instrument.cs │ │ │ ├── KeySignature.cs │ │ │ ├── Note.cs │ │ │ ├── NoteRest.cs │ │ │ ├── Pan.cs │ │ │ ├── Rest.cs │ │ │ ├── Tempo.cs │ │ │ ├── TimeSignature.cs │ │ │ └── Volume.cs │ │ ├── Intermediate.cs │ │ ├── Notes.cs │ │ ├── NotesStatus.cs │ │ ├── Position.cs │ │ └── Track.cs │ ├── MIDI │ │ ├── Event │ │ │ ├── ControlChange.cs │ │ │ ├── EndOfTrack.cs │ │ │ ├── Event.cs │ │ │ ├── KeySignature.cs │ │ │ ├── MIDIEvent.cs │ │ │ ├── MetaEvent.cs │ │ │ ├── Note.cs │ │ │ ├── NoteOff.cs │ │ │ ├── NoteOn.cs │ │ │ ├── Pan.cs │ │ │ ├── ProgramChange.cs │ │ │ ├── SequenceTrackName.cs │ │ │ ├── SetTempo.cs │ │ │ ├── SysExEvent.cs │ │ │ ├── TimeSignature.cs │ │ │ └── Volume.cs │ │ ├── MIDI.cs │ │ └── Track.cs │ └── MML │ │ ├── Bar.cs │ │ ├── Command │ │ ├── Command.cs │ │ ├── ControlCommand.cs │ │ ├── Custom │ │ │ ├── CustomInstrument.cs │ │ │ ├── CustomNote.cs │ │ │ ├── CustomPan.cs │ │ │ ├── CustomRest.cs │ │ │ ├── CustomTempo.cs │ │ │ └── CustomVolume.cs │ │ ├── FMP │ │ │ ├── FMPInstrument.cs │ │ │ ├── FMPNote.cs │ │ │ ├── FMPPan.cs │ │ │ ├── FMPRest.cs │ │ │ ├── FMPTempo.cs │ │ │ └── FMPVolume.cs │ │ ├── FMP7 │ │ │ ├── FMP7Instrument.cs │ │ │ ├── FMP7Note.cs │ │ │ ├── FMP7Pan.cs │ │ │ ├── FMP7Rest.cs │ │ │ ├── FMP7Tempo.cs │ │ │ └── FMP7Volume.cs │ │ ├── Instrument.cs │ │ ├── MUCOM88 │ │ │ ├── MUCOM88Instrument.cs │ │ │ ├── MUCOM88Note.cs │ │ │ ├── MUCOM88Pan.cs │ │ │ ├── MUCOM88Rest.cs │ │ │ ├── MUCOM88Tempo.cs │ │ │ └── MUCOM88Volume.cs │ │ ├── MXDRV │ │ │ ├── MXDRVInstrument.cs │ │ │ ├── MXDRVNote.cs │ │ │ ├── MXDRVPan.cs │ │ │ ├── MXDRVRest.cs │ │ │ ├── MXDRVTempo.cs │ │ │ └── MXDRVVolume.cs │ │ ├── Mml2vgm │ │ │ ├── Mml2vgmInstrument.cs │ │ │ ├── Mml2vgmNote.cs │ │ │ ├── Mml2vgmPan.cs │ │ │ ├── Mml2vgmRest.cs │ │ │ ├── Mml2vgmTempo.cs │ │ │ └── Mml2vgmVolume.cs │ │ ├── NRTDRV │ │ │ ├── NRTDRVInstrument.cs │ │ │ ├── NRTDRVNote.cs │ │ │ ├── NRTDRVPan.cs │ │ │ ├── NRTDRVRest.cs │ │ │ ├── NRTDRVTempo.cs │ │ │ └── NRTDRVVolume.cs │ │ ├── Note.cs │ │ ├── NoteRest.cs │ │ ├── PMD │ │ │ ├── PMDInstrument.cs │ │ │ ├── PMDNote.cs │ │ │ ├── PMDPan.cs │ │ │ ├── PMDRest.cs │ │ │ ├── PMDTempo.cs │ │ │ └── PMDVolume.cs │ │ ├── Pan.cs │ │ ├── Rest.cs │ │ ├── Tempo.cs │ │ └── Volume.cs │ │ ├── MML.cs │ │ └── Part.cs │ ├── Form │ ├── BasePanel.Designer.cs │ ├── BasePanel.cs │ ├── BasePanel.resx │ ├── ControlCommandGenericPanel.Designer.cs │ ├── ControlCommandGenericPanel.cs │ ├── ControlCommandGenericPanel.ja.resx │ ├── ControlCommandGenericPanel.resx │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.ja.resx │ ├── Form1.resx │ ├── MMLExpressionPanel1.Designer.cs │ ├── MMLExpressionPanel1.cs │ ├── MMLExpressionPanel1.ja.resx │ ├── MMLExpressionPanel1.resx │ ├── MMLExpressionPanel2.Designer.cs │ ├── MMLExpressionPanel2.cs │ ├── MMLExpressionPanel2.ja.resx │ ├── MMLExpressionPanel2.resx │ ├── NoteRestPanel1.Designer.cs │ ├── NoteRestPanel1.cs │ ├── NoteRestPanel1.ja.resx │ ├── NoteRestPanel1.resx │ ├── NoteRestPanel2.Designer.cs │ ├── NoteRestPanel2.cs │ ├── NoteRestPanel2.ja.resx │ ├── NoteRestPanel2.resx │ ├── OutputPartPanel.Designer.cs │ ├── OutputPartPanel.cs │ ├── OutputPartPanel.ja.resx │ ├── OutputPartPanel.resx │ ├── PanPanel.Designer.cs │ ├── PanPanel.cs │ ├── PanPanel.ja.resx │ ├── PanPanel.resx │ ├── PartDataGridView.Designer.cs │ ├── PartDataGridView.cs │ ├── PartDataGridView.ja.resx │ ├── PartDataGridView.resx │ ├── ProgramChangePanel.Designer.cs │ ├── ProgramChangePanel.cs │ ├── ProgramChangePanel.ja.resx │ ├── ProgramChangePanel.resx │ ├── TempoPanel.Designer.cs │ ├── TempoPanel.cs │ ├── TempoPanel.ja.resx │ ├── TempoPanel.resx │ ├── TimeBaseForm.Designer.cs │ ├── TimeBaseForm.cs │ ├── TimeBaseForm.ja.resx │ ├── TimeBaseForm.resx │ ├── VersionInfoForm.Designer.cs │ ├── VersionInfoForm.cs │ ├── VersionInfoForm.ja.resx │ ├── VersionInfoForm.resx │ ├── VolumePanel.Designer.cs │ ├── VolumePanel.cs │ ├── VolumePanel.ja.resx │ └── VolumePanel.resx │ ├── LittleEndianConverter.cs │ ├── MIDIReader.cs │ ├── MMLPrinter.cs │ ├── Modifier │ ├── ChangeEventSet.cs │ ├── CustomMusicDataModifier.cs │ ├── FMP7MusicDataModifier.cs │ ├── FMPMusicDataModifier.cs │ ├── MUCOM88MusicDataModifier.cs │ ├── MXDRVMusicDataModifier.cs │ ├── Mml2vgmMusicDataModifier.cs │ ├── MusicDataModifier.cs │ ├── NRTDRVMusicDataModifier.cs │ ├── PMDMusicDataModifier.cs │ └── TempoSet.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.ja.Designer.cs │ ├── Resources.ja.resx │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Settings.cs │ ├── Tables.cs │ └── VariableLengthQuantity.cs ├── LICENSE ├── README.md └── README_ja.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/.gitignore -------------------------------------------------------------------------------- /ConvFMML/ConvFMML.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML.sln -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/App.config -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Common.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/ConvFMML.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/ConvFMML.csproj -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/ConvFMML.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/ConvFMML.ico -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/IntermediateToCustomMMLConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/IntermediateToCustomMMLConverter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/IntermediateToFMP7MMLConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/IntermediateToFMP7MMLConverter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/IntermediateToFMPMMLConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/IntermediateToFMPMMLConverter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/IntermediateToMMLConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/IntermediateToMMLConverter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/IntermediateToMUCOM88MMLConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/IntermediateToMUCOM88MMLConverter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/IntermediateToMXDRVMMLConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/IntermediateToMXDRVMMLConverter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/IntermediateToMml2vgmMMLConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/IntermediateToMml2vgmMMLConverter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/IntermediateToNRTDRVMMLConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/IntermediateToNRTDRVMMLConverter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/IntermediateToPMDMMLConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/IntermediateToPMDMMLConverter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/LengthContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/LengthContainer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/LengthElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/LengthElement.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Converter/MIDIToIntermediateConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Converter/MIDIToIntermediateConverter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Event/ChangeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Event/ChangeEvent.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Event/Instrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Event/Instrument.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Event/KeySignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Event/KeySignature.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Event/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Event/Note.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Event/NoteRest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Event/NoteRest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Event/Pan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Event/Pan.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Event/Rest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Event/Rest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Event/Tempo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Event/Tempo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Event/TimeSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Event/TimeSignature.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Event/Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Event/Volume.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Intermediate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Intermediate.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Notes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Notes.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/NotesStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/NotesStatus.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Position.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/Intermediate/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/Intermediate/Track.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/ControlChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/ControlChange.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/EndOfTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/EndOfTrack.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/Event.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/KeySignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/KeySignature.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/MIDIEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/MIDIEvent.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/MetaEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/MetaEvent.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/Note.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/NoteOff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/NoteOff.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/NoteOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/NoteOn.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/Pan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/Pan.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/ProgramChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/ProgramChange.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/SequenceTrackName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/SequenceTrackName.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/SetTempo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/SetTempo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/SysExEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/SysExEvent.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/TimeSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/TimeSignature.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Event/Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Event/Volume.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/MIDI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/MIDI.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MIDI/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MIDI/Track.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Bar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Bar.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Command.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/ControlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/ControlCommand.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomInstrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomInstrument.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomNote.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomPan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomPan.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomRest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomRest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomTempo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomTempo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Custom/CustomVolume.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPInstrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPInstrument.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPNote.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPPan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPPan.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPRest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPRest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPTempo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPTempo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP/FMPVolume.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Instrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Instrument.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Note.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Pan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Pan.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Rest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Rest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Tempo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Tempo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/FMP7/FMP7Volume.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Instrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Instrument.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Instrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Instrument.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Note.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Pan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Pan.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Rest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Rest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Tempo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Tempo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MUCOM88/MUCOM88Volume.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVInstrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVInstrument.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVNote.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVPan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVPan.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVRest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVRest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVTempo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVTempo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/MXDRV/MXDRVVolume.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmInstrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmInstrument.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmNote.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmPan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmPan.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmRest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmRest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmTempo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmTempo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Mml2vgm/Mml2vgmVolume.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVInstrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVInstrument.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVNote.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVPan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVPan.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVRest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVRest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVTempo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVTempo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/NRTDRV/NRTDRVVolume.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Note.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/NoteRest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/NoteRest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDInstrument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDInstrument.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDNote.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDPan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDPan.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDRest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDRest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDTempo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDTempo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/PMD/PMDVolume.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Pan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Pan.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Rest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Rest.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Tempo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Tempo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Command/Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Command/Volume.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/MML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/MML.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Data/MML/Part.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Data/MML/Part.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/BasePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/BasePanel.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/BasePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/BasePanel.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/BasePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/BasePanel.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/ControlCommandGenericPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/ControlCommandGenericPanel.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/ControlCommandGenericPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/ControlCommandGenericPanel.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/ControlCommandGenericPanel.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/ControlCommandGenericPanel.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/ControlCommandGenericPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/ControlCommandGenericPanel.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/Form1.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/Form1.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/Form1.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/Form1.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/Form1.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/MMLExpressionPanel1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/MMLExpressionPanel1.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/MMLExpressionPanel1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/MMLExpressionPanel1.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/MMLExpressionPanel1.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/MMLExpressionPanel1.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/MMLExpressionPanel1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/MMLExpressionPanel1.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/MMLExpressionPanel2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/MMLExpressionPanel2.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/MMLExpressionPanel2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/MMLExpressionPanel2.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/MMLExpressionPanel2.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/MMLExpressionPanel2.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/MMLExpressionPanel2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/MMLExpressionPanel2.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/NoteRestPanel1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/NoteRestPanel1.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/NoteRestPanel1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/NoteRestPanel1.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/NoteRestPanel1.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/NoteRestPanel1.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/NoteRestPanel1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/NoteRestPanel1.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/NoteRestPanel2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/NoteRestPanel2.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/NoteRestPanel2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/NoteRestPanel2.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/NoteRestPanel2.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/NoteRestPanel2.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/NoteRestPanel2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/NoteRestPanel2.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/OutputPartPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/OutputPartPanel.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/OutputPartPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/OutputPartPanel.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/OutputPartPanel.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/OutputPartPanel.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/OutputPartPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/OutputPartPanel.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/PanPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/PanPanel.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/PanPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/PanPanel.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/PanPanel.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/PanPanel.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/PanPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/PanPanel.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/PartDataGridView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/PartDataGridView.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/PartDataGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/PartDataGridView.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/PartDataGridView.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/PartDataGridView.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/PartDataGridView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/PartDataGridView.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/ProgramChangePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/ProgramChangePanel.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/ProgramChangePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/ProgramChangePanel.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/ProgramChangePanel.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/ProgramChangePanel.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/ProgramChangePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/ProgramChangePanel.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/TempoPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/TempoPanel.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/TempoPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/TempoPanel.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/TempoPanel.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/TempoPanel.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/TempoPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/TempoPanel.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/TimeBaseForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/TimeBaseForm.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/TimeBaseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/TimeBaseForm.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/TimeBaseForm.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/TimeBaseForm.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/TimeBaseForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/TimeBaseForm.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/VersionInfoForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/VersionInfoForm.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/VersionInfoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/VersionInfoForm.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/VersionInfoForm.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/VersionInfoForm.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/VersionInfoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/VersionInfoForm.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/VolumePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/VolumePanel.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/VolumePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/VolumePanel.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/VolumePanel.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/VolumePanel.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Form/VolumePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Form/VolumePanel.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/LittleEndianConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/LittleEndianConverter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/MIDIReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/MIDIReader.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/MMLPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/MMLPrinter.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Modifier/ChangeEventSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Modifier/ChangeEventSet.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Modifier/CustomMusicDataModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Modifier/CustomMusicDataModifier.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Modifier/FMP7MusicDataModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Modifier/FMP7MusicDataModifier.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Modifier/FMPMusicDataModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Modifier/FMPMusicDataModifier.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Modifier/MUCOM88MusicDataModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Modifier/MUCOM88MusicDataModifier.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Modifier/MXDRVMusicDataModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Modifier/MXDRVMusicDataModifier.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Modifier/Mml2vgmMusicDataModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Modifier/Mml2vgmMusicDataModifier.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Modifier/MusicDataModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Modifier/MusicDataModifier.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Modifier/NRTDRVMusicDataModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Modifier/NRTDRVMusicDataModifier.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Modifier/PMDMusicDataModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Modifier/PMDMusicDataModifier.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Modifier/TempoSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Modifier/TempoSet.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Program.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Properties/Resources.ja.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Properties/Resources.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Properties/Resources.ja.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Properties/Resources.resx -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Properties/Settings.settings -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Settings.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/Tables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/Tables.cs -------------------------------------------------------------------------------- /ConvFMML/ConvFMML/VariableLengthQuantity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/ConvFMML/ConvFMML/VariableLengthQuantity.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/README.md -------------------------------------------------------------------------------- /README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerrahkr/ConvFMML/HEAD/README_ja.md --------------------------------------------------------------------------------