├── .gitignore ├── .travis.yml ├── 0CC-FamiTracker.rc ├── 0CC-FamiTracker.reg ├── 0CC-FamiTracker.sln ├── 0CC-FamiTracker.vcxproj ├── 0CC-FamiTracker.vcxproj.filters ├── 0CC-readme.txt ├── 0ccft-ext ├── CMakeLists.txt ├── README.md └── testMain.cpp ├── LICENSE.txt ├── README.md ├── Source ├── APU │ ├── 2A03.cpp │ ├── 2A03.h │ ├── 2A03Chan.cpp │ ├── 2A03Chan.h │ ├── APU.cpp │ ├── APU.h │ ├── APUInterface.h │ ├── Channel.cpp │ ├── Channel.h │ ├── DPCM.cpp │ ├── DPCM.h │ ├── FDS.cpp │ ├── FDS.h │ ├── MMC5.cpp │ ├── MMC5.h │ ├── Mixer.cpp │ ├── Mixer.h │ ├── MixerChannel.cpp │ ├── MixerChannel.h │ ├── MixerLevels.cpp │ ├── MixerLevels.h │ ├── N163.cpp │ ├── N163.h │ ├── Noise.cpp │ ├── Noise.h │ ├── S5B.cpp │ ├── S5B.h │ ├── SampleMem.cpp │ ├── SampleMem.h │ ├── SoundChip.cpp │ ├── SoundChip.h │ ├── Square.cpp │ ├── Square.h │ ├── Triangle.cpp │ ├── Triangle.h │ ├── Types.h │ ├── Types_fwd.h │ ├── VRC6.cpp │ ├── VRC6.h │ ├── VRC7.cpp │ ├── VRC7.h │ └── ext │ │ ├── FDSSound_new.cpp │ │ ├── FDSSound_new.h │ │ ├── emu2413.c │ │ ├── emu2413.h │ │ └── vrc7tone.h ├── AboutDlg.cpp ├── AboutDlg.h ├── Accelerator.cpp ├── Accelerator.h ├── Action.cpp ├── Action.h ├── ActionHandler.cpp ├── ActionHandler.h ├── Arpeggiator.cpp ├── Arpeggiator.h ├── Assertion.h ├── AudioDriver.cpp ├── AudioDriver.h ├── BinarySerializable.h ├── Blip_Buffer │ ├── Blip_Buffer.cpp │ └── Blip_Buffer.h ├── Bookmark.cpp ├── Bookmark.h ├── BookmarkCollection.cpp ├── BookmarkCollection.h ├── BookmarkDlg.cpp ├── BookmarkDlg.h ├── ChannelHandler.cpp ├── ChannelHandler.h ├── ChannelHandlerInterface.h ├── ChannelMap.cpp ├── ChannelMap.h ├── ChannelOrder.cpp ├── ChannelOrder.h ├── Channels2A03.cpp ├── Channels2A03.h ├── ChannelsDlg.cpp ├── ChannelsDlg.h ├── ChannelsFDS.cpp ├── ChannelsFDS.h ├── ChannelsMMC5.cpp ├── ChannelsMMC5.h ├── ChannelsN163.cpp ├── ChannelsN163.h ├── ChannelsS5B.cpp ├── ChannelsS5B.h ├── ChannelsVRC6.cpp ├── ChannelsVRC6.h ├── ChannelsVRC7.cpp ├── ChannelsVRC7.h ├── ChipHandler.cpp ├── ChipHandler.h ├── ChipHandlerS5B.cpp ├── ChipHandlerS5B.h ├── ChipHandlerVRC7.cpp ├── ChipHandlerVRC7.h ├── Chunk.cpp ├── Chunk.h ├── ChunkRenderBinary.cpp ├── ChunkRenderBinary.h ├── ChunkRenderText.cpp ├── ChunkRenderText.h ├── Clipboard.cpp ├── Clipboard.h ├── Color.h ├── ColorScheme.h ├── CommandLineExport.cpp ├── CommandLineExport.h ├── CommentsDlg.cpp ├── CommentsDlg.h ├── Common.h ├── Compiler.cpp ├── Compiler.h ├── CompoundAction.cpp ├── CompoundAction.h ├── ConfigAppearance.cpp ├── ConfigAppearance.h ├── ConfigGeneral.cpp ├── ConfigGeneral.h ├── ConfigMIDI.cpp ├── ConfigMIDI.h ├── ConfigMixer.cpp ├── ConfigMixer.h ├── ConfigShortcuts.cpp ├── ConfigShortcuts.h ├── ConfigSound.cpp ├── ConfigSound.h ├── ConfigVersion.cpp ├── ConfigVersion.h ├── ControlPanelDlg.cpp ├── ControlPanelDlg.h ├── CreateWaveDlg.cpp ├── CreateWaveDlg.h ├── CustomControls.cpp ├── CustomControls.h ├── DPI.cpp ├── DPI.h ├── DSampleManager.cpp ├── DSampleManager.h ├── DetuneDlg.cpp ├── DetuneDlg.h ├── DetuneTable.cpp ├── DetuneTable.h ├── DialogReBar.cpp ├── DialogReBar.h ├── DirectSound.cpp ├── DirectSound.h ├── DocumentFile.cpp ├── DocumentFile.h ├── Driver.h ├── Effect.h ├── Exception.cpp ├── Exception.h ├── ExportDialog.cpp ├── ExportDialog.h ├── FFT │ ├── FftBuffer.h │ └── FftComplex.hpp ├── FamiTracker.cpp ├── FamiTracker.h ├── FamiTrackerDefines.h ├── FamiTrackerDoc.cpp ├── FamiTrackerDoc.h ├── FamiTrackerDocIO.cpp ├── FamiTrackerDocIO.h ├── FamiTrackerDocIOCommon.h ├── FamiTrackerDocIOJson.cpp ├── FamiTrackerDocIOJson.h ├── FamiTrackerDocOldIO.cpp ├── FamiTrackerDocOldIO.h ├── FamiTrackerEnv.cpp ├── FamiTrackerEnv.h ├── FamiTrackerModule.cpp ├── FamiTrackerModule.h ├── FamiTrackerView.cpp ├── FamiTrackerView.h ├── FamiTrackerViewMessage.h ├── FileDialogs.cpp ├── FileDialogs.h ├── FindDlg.cpp ├── FindDlg.h ├── FrameAction.cpp ├── FrameAction.h ├── FrameClipData.cpp ├── FrameClipData.h ├── FrameEditor.cpp ├── FrameEditor.h ├── FrameEditorModel.cpp ├── FrameEditorModel.h ├── FrameEditorTypes.cpp ├── FrameEditorTypes.h ├── GotoDlg.cpp ├── GotoDlg.h ├── GraphEditor.cpp ├── GraphEditor.h ├── GraphEditorComponent.cpp ├── GraphEditorComponent.h ├── GraphEditorComponentImpl.cpp ├── GraphEditorComponentImpl.h ├── GraphEditorFactory.cpp ├── GraphEditorFactory.h ├── Graphics.cpp ├── Graphics.h ├── GrooveDlg.cpp ├── GrooveDlg.h ├── Highlight.h ├── InstCompiler.cpp ├── InstCompiler.h ├── InstHandler.h ├── InstHandlerDPCM.cpp ├── InstHandlerDPCM.h ├── InstHandlerVRC7.cpp ├── InstHandlerVRC7.h ├── Instrument.cpp ├── Instrument.h ├── Instrument2A03.cpp ├── Instrument2A03.h ├── InstrumentEditDlg.cpp ├── InstrumentEditDlg.h ├── InstrumentEditPanel.cpp ├── InstrumentEditPanel.h ├── InstrumentEditorDPCM.cpp ├── InstrumentEditorDPCM.h ├── InstrumentEditorFDS.cpp ├── InstrumentEditorFDS.h ├── InstrumentEditorFDSEnvelope.cpp ├── InstrumentEditorFDSEnvelope.h ├── InstrumentEditorN163Wave.cpp ├── InstrumentEditorN163Wave.h ├── InstrumentEditorSeq.cpp ├── InstrumentEditorSeq.h ├── InstrumentEditorVRC7.cpp ├── InstrumentEditorVRC7.h ├── InstrumentFDS.cpp ├── InstrumentFDS.h ├── InstrumentFileTree.cpp ├── InstrumentFileTree.h ├── InstrumentIO.cpp ├── InstrumentIO.h ├── InstrumentListCtrl.cpp ├── InstrumentListCtrl.h ├── InstrumentManager.cpp ├── InstrumentManager.h ├── InstrumentManagerInterface.h ├── InstrumentN163.cpp ├── InstrumentN163.h ├── InstrumentRecorder.cpp ├── InstrumentRecorder.h ├── InstrumentS5B.cpp ├── InstrumentS5B.h ├── InstrumentService.cpp ├── InstrumentService.h ├── InstrumentType.h ├── InstrumentTypeImpl.cpp ├── InstrumentTypeImpl.h ├── InstrumentVRC6.cpp ├── InstrumentVRC6.h ├── InstrumentVRC7.cpp ├── InstrumentVRC7.h ├── IntRange.h ├── Kraid.cpp ├── Kraid.h ├── MIDI.cpp ├── MIDI.h ├── MainFrm.cpp ├── MainFrm.h ├── ModSequenceEditor.cpp ├── ModSequenceEditor.h ├── ModuleAction.cpp ├── ModuleAction.h ├── ModuleException.cpp ├── ModuleException.h ├── ModuleImportDlg.cpp ├── ModuleImportDlg.h ├── ModuleImporter.cpp ├── ModuleImporter.h ├── ModulePropertiesDlg.cpp ├── ModulePropertiesDlg.h ├── NoteName.cpp ├── NoteName.h ├── NoteQueue.cpp ├── NoteQueue.h ├── NumConv.h ├── OldSequence.cpp ├── OldSequence.h ├── PCMImport.cpp ├── PCMImport.h ├── PatternAction.cpp ├── PatternAction.h ├── PatternClipData.cpp ├── PatternClipData.h ├── PatternCompiler.cpp ├── PatternCompiler.h ├── PatternComponent.cpp ├── PatternComponent.h ├── PatternData.cpp ├── PatternData.h ├── PatternEditor.cpp ├── PatternEditor.h ├── PatternEditorTypes.h ├── PatternNote.h ├── PerformanceDlg.cpp ├── PerformanceDlg.h ├── PeriodTables.cpp ├── PeriodTables.h ├── PlayerCursor.cpp ├── PlayerCursor.h ├── RecordSettingsDlg.cpp ├── RecordSettingsDlg.h ├── RegisterDisplay.cpp ├── RegisterDisplay.h ├── RegisterState.cpp ├── RegisterState.h ├── SampleEditorDlg.cpp ├── SampleEditorDlg.h ├── SampleEditorView.cpp ├── SampleEditorView.h ├── SelectionRange.cpp ├── SelectionRange.h ├── SeqInstHandler.cpp ├── SeqInstHandler.h ├── SeqInstHandler2A03Pulse.h ├── SeqInstHandlerFDS.cpp ├── SeqInstHandlerFDS.h ├── SeqInstHandlerN163.cpp ├── SeqInstHandlerN163.h ├── SeqInstHandlerS5B.cpp ├── SeqInstHandlerS5B.h ├── SeqInstHandlerSawtooth.cpp ├── SeqInstHandlerSawtooth.h ├── SeqInstrument.cpp ├── SeqInstrument.h ├── Sequence.cpp ├── Sequence.h ├── SequenceCollection.cpp ├── SequenceCollection.h ├── SequenceEditor.cpp ├── SequenceEditor.h ├── SequenceEditorMessage.h ├── SequenceManager.cpp ├── SequenceManager.h ├── SequenceParser.cpp ├── SequenceParser.h ├── SequenceSetting.cpp ├── SequenceSetting.h ├── Settings.cpp ├── Settings.h ├── SettingsService.cpp ├── SettingsService.h ├── SimpleFile.cpp ├── SimpleFile.h ├── SizeEditor.cpp ├── SizeEditor.h ├── SongData.cpp ├── SongData.h ├── SongLengthScanner.cpp ├── SongLengthScanner.h ├── SongState.cpp ├── SongState.h ├── SongView.cpp ├── SongView.h ├── SoundChipService.cpp ├── SoundChipService.h ├── SoundChipSet.cpp ├── SoundChipSet.h ├── SoundChipType.h ├── SoundChipTypeImpl.cpp ├── SoundChipTypeImpl.h ├── SoundDriver.cpp ├── SoundDriver.h ├── SoundGen.cpp ├── SoundGen.h ├── SoundGenBase.h ├── SpeedDlg.cpp ├── SpeedDlg.h ├── SplitKeyboardDlg.cpp ├── SplitKeyboardDlg.h ├── StretchDlg.cpp ├── StretchDlg.h ├── StringClipData.h ├── StrongOrdering.h ├── SwapDlg.cpp ├── SwapDlg.h ├── TempoCounter.cpp ├── TempoCounter.h ├── TempoDisplay.cpp ├── TempoDisplay.h ├── TextExporter.cpp ├── TextExporter.h ├── TrackData.cpp ├── TrackData.h ├── TrackerChannel.cpp ├── TrackerChannel.h ├── TransposeDlg.cpp ├── TransposeDlg.h ├── VersionChecker.cpp ├── VersionChecker.h ├── VisualizerBase.cpp ├── VisualizerBase.h ├── VisualizerScope.cpp ├── VisualizerScope.h ├── VisualizerSpectrum.cpp ├── VisualizerSpectrum.h ├── VisualizerStatic.cpp ├── VisualizerStatic.h ├── VisualizerWnd.cpp ├── VisualizerWnd.h ├── WavProgressDlg.cpp ├── WavProgressDlg.h ├── WaveEditor.cpp ├── WaveEditor.h ├── WaveRenderer.cpp ├── WaveRenderer.h ├── WaveRendererFactory.cpp ├── WaveRendererFactory.h ├── WaveStream.cpp ├── WaveStream.h ├── WaveformGenerator.cpp ├── WaveformGenerator.h ├── WavegenBuiltin.cpp ├── WavegenBuiltin.h ├── WinSDK │ ├── VersionHelpers.h │ └── winapifamily.h ├── array_view.h ├── clip.h ├── drivers │ ├── drv_2a03.h │ ├── drv_all.h │ ├── drv_fds.h │ ├── drv_mmc5.h │ ├── drv_n163.h │ ├── drv_s5b.h │ ├── drv_vrc6.h │ └── drv_vrc7.h ├── json │ └── json.hpp ├── resampler │ ├── resample.cpp │ ├── resample.hpp │ ├── resample.inl │ ├── sinc.cpp │ └── sinc.hpp ├── stdafx.cpp ├── stdafx.h ├── str_conv │ ├── str_conv.hpp │ └── utf8_conv.hpp ├── sv_regex.h ├── to_sv.h ├── version.cpp └── version.h ├── appveyor.yml ├── changelog.txt ├── fuzz ├── Makefile ├── SequenceParserTest.cpp ├── StrConvTest.cpp └── testcases │ ├── SequenceParser │ ├── 0 │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ └── 4.txt │ └── 2 │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ └── 4.txt │ └── StrConv │ └── 1.txt ├── libft0cc ├── CMakeLists.txt ├── README.md ├── include │ ├── CMakeLists.txt │ └── ft0cc │ │ ├── CMakeLists.txt │ │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── dpcm_sample.hpp │ │ ├── groove.hpp │ │ ├── inst_sequence.hpp │ │ └── pitch.hpp │ │ ├── enum_traits.h │ │ └── fs.h ├── src │ ├── CMakeLists.txt │ ├── ft0cc.cpp │ └── ft0cc │ │ ├── CMakeLists.txt │ │ └── doc │ │ ├── CMakeLists.txt │ │ ├── dpcm_sample.cpp │ │ ├── groove.cpp │ │ └── inst_sequence.cpp ├── test │ ├── CMakeLists.txt │ └── ft0cc │ │ ├── CMakeLists.txt │ │ ├── doc │ │ ├── dpcm_sample_test.cpp │ │ ├── groove_test.cpp │ │ └── inst_sequence_test.cpp │ │ └── test_main.cpp └── vc │ ├── libft0cc.vcxproj │ └── libft0cc.vcxproj.filters ├── post-commit.sample ├── res ├── 0CC-FamiTracker.rc2 ├── About.bmp ├── Application.ico ├── Document.ico ├── Inst_2A03.ico ├── Inst_2A07.ico ├── Inst_FDS.ico ├── Inst_N163.ico ├── Inst_S5B.ico ├── Inst_VRC6.ico ├── Inst_VRC7.ico ├── InstrumentToolbar-16.bmp ├── InstrumentToolbar-256.bmp ├── LeftArrow.ico ├── MainToolbar-16.bmp ├── MainToolbar-256.bmp ├── RightArrow.ico ├── key_black_pressed.bmp ├── key_black_unpressed.bmp ├── key_white_pressed.bmp └── key_white_unpressed.bmp ├── resource.h ├── specs.txt └── travis └── install_libcxx.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/.travis.yml -------------------------------------------------------------------------------- /0CC-FamiTracker.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/0CC-FamiTracker.rc -------------------------------------------------------------------------------- /0CC-FamiTracker.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/0CC-FamiTracker.reg -------------------------------------------------------------------------------- /0CC-FamiTracker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/0CC-FamiTracker.sln -------------------------------------------------------------------------------- /0CC-FamiTracker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/0CC-FamiTracker.vcxproj -------------------------------------------------------------------------------- /0CC-FamiTracker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/0CC-FamiTracker.vcxproj.filters -------------------------------------------------------------------------------- /0CC-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/0CC-readme.txt -------------------------------------------------------------------------------- /0ccft-ext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/0ccft-ext/CMakeLists.txt -------------------------------------------------------------------------------- /0ccft-ext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/0ccft-ext/README.md -------------------------------------------------------------------------------- /0ccft-ext/testMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/0ccft-ext/testMain.cpp -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/README.md -------------------------------------------------------------------------------- /Source/APU/2A03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/2A03.cpp -------------------------------------------------------------------------------- /Source/APU/2A03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/2A03.h -------------------------------------------------------------------------------- /Source/APU/2A03Chan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/2A03Chan.cpp -------------------------------------------------------------------------------- /Source/APU/2A03Chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/2A03Chan.h -------------------------------------------------------------------------------- /Source/APU/APU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/APU.cpp -------------------------------------------------------------------------------- /Source/APU/APU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/APU.h -------------------------------------------------------------------------------- /Source/APU/APUInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/APUInterface.h -------------------------------------------------------------------------------- /Source/APU/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Channel.cpp -------------------------------------------------------------------------------- /Source/APU/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Channel.h -------------------------------------------------------------------------------- /Source/APU/DPCM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/DPCM.cpp -------------------------------------------------------------------------------- /Source/APU/DPCM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/DPCM.h -------------------------------------------------------------------------------- /Source/APU/FDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/FDS.cpp -------------------------------------------------------------------------------- /Source/APU/FDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/FDS.h -------------------------------------------------------------------------------- /Source/APU/MMC5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/MMC5.cpp -------------------------------------------------------------------------------- /Source/APU/MMC5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/MMC5.h -------------------------------------------------------------------------------- /Source/APU/Mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Mixer.cpp -------------------------------------------------------------------------------- /Source/APU/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Mixer.h -------------------------------------------------------------------------------- /Source/APU/MixerChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/MixerChannel.cpp -------------------------------------------------------------------------------- /Source/APU/MixerChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/MixerChannel.h -------------------------------------------------------------------------------- /Source/APU/MixerLevels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/MixerLevels.cpp -------------------------------------------------------------------------------- /Source/APU/MixerLevels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/MixerLevels.h -------------------------------------------------------------------------------- /Source/APU/N163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/N163.cpp -------------------------------------------------------------------------------- /Source/APU/N163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/N163.h -------------------------------------------------------------------------------- /Source/APU/Noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Noise.cpp -------------------------------------------------------------------------------- /Source/APU/Noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Noise.h -------------------------------------------------------------------------------- /Source/APU/S5B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/S5B.cpp -------------------------------------------------------------------------------- /Source/APU/S5B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/S5B.h -------------------------------------------------------------------------------- /Source/APU/SampleMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/SampleMem.cpp -------------------------------------------------------------------------------- /Source/APU/SampleMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/SampleMem.h -------------------------------------------------------------------------------- /Source/APU/SoundChip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/SoundChip.cpp -------------------------------------------------------------------------------- /Source/APU/SoundChip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/SoundChip.h -------------------------------------------------------------------------------- /Source/APU/Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Square.cpp -------------------------------------------------------------------------------- /Source/APU/Square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Square.h -------------------------------------------------------------------------------- /Source/APU/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Triangle.cpp -------------------------------------------------------------------------------- /Source/APU/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Triangle.h -------------------------------------------------------------------------------- /Source/APU/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Types.h -------------------------------------------------------------------------------- /Source/APU/Types_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/Types_fwd.h -------------------------------------------------------------------------------- /Source/APU/VRC6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/VRC6.cpp -------------------------------------------------------------------------------- /Source/APU/VRC6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/VRC6.h -------------------------------------------------------------------------------- /Source/APU/VRC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/VRC7.cpp -------------------------------------------------------------------------------- /Source/APU/VRC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/VRC7.h -------------------------------------------------------------------------------- /Source/APU/ext/FDSSound_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/ext/FDSSound_new.cpp -------------------------------------------------------------------------------- /Source/APU/ext/FDSSound_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/ext/FDSSound_new.h -------------------------------------------------------------------------------- /Source/APU/ext/emu2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/ext/emu2413.c -------------------------------------------------------------------------------- /Source/APU/ext/emu2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/ext/emu2413.h -------------------------------------------------------------------------------- /Source/APU/ext/vrc7tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/APU/ext/vrc7tone.h -------------------------------------------------------------------------------- /Source/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/AboutDlg.cpp -------------------------------------------------------------------------------- /Source/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/AboutDlg.h -------------------------------------------------------------------------------- /Source/Accelerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Accelerator.cpp -------------------------------------------------------------------------------- /Source/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Accelerator.h -------------------------------------------------------------------------------- /Source/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Action.cpp -------------------------------------------------------------------------------- /Source/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Action.h -------------------------------------------------------------------------------- /Source/ActionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ActionHandler.cpp -------------------------------------------------------------------------------- /Source/ActionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ActionHandler.h -------------------------------------------------------------------------------- /Source/Arpeggiator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Arpeggiator.cpp -------------------------------------------------------------------------------- /Source/Arpeggiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Arpeggiator.h -------------------------------------------------------------------------------- /Source/Assertion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Assertion.h -------------------------------------------------------------------------------- /Source/AudioDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/AudioDriver.cpp -------------------------------------------------------------------------------- /Source/AudioDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/AudioDriver.h -------------------------------------------------------------------------------- /Source/BinarySerializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/BinarySerializable.h -------------------------------------------------------------------------------- /Source/Blip_Buffer/Blip_Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Blip_Buffer/Blip_Buffer.cpp -------------------------------------------------------------------------------- /Source/Blip_Buffer/Blip_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Blip_Buffer/Blip_Buffer.h -------------------------------------------------------------------------------- /Source/Bookmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Bookmark.cpp -------------------------------------------------------------------------------- /Source/Bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Bookmark.h -------------------------------------------------------------------------------- /Source/BookmarkCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/BookmarkCollection.cpp -------------------------------------------------------------------------------- /Source/BookmarkCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/BookmarkCollection.h -------------------------------------------------------------------------------- /Source/BookmarkDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/BookmarkDlg.cpp -------------------------------------------------------------------------------- /Source/BookmarkDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/BookmarkDlg.h -------------------------------------------------------------------------------- /Source/ChannelHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelHandler.cpp -------------------------------------------------------------------------------- /Source/ChannelHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelHandler.h -------------------------------------------------------------------------------- /Source/ChannelHandlerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelHandlerInterface.h -------------------------------------------------------------------------------- /Source/ChannelMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelMap.cpp -------------------------------------------------------------------------------- /Source/ChannelMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelMap.h -------------------------------------------------------------------------------- /Source/ChannelOrder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelOrder.cpp -------------------------------------------------------------------------------- /Source/ChannelOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelOrder.h -------------------------------------------------------------------------------- /Source/Channels2A03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Channels2A03.cpp -------------------------------------------------------------------------------- /Source/Channels2A03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Channels2A03.h -------------------------------------------------------------------------------- /Source/ChannelsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsDlg.cpp -------------------------------------------------------------------------------- /Source/ChannelsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsDlg.h -------------------------------------------------------------------------------- /Source/ChannelsFDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsFDS.cpp -------------------------------------------------------------------------------- /Source/ChannelsFDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsFDS.h -------------------------------------------------------------------------------- /Source/ChannelsMMC5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsMMC5.cpp -------------------------------------------------------------------------------- /Source/ChannelsMMC5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsMMC5.h -------------------------------------------------------------------------------- /Source/ChannelsN163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsN163.cpp -------------------------------------------------------------------------------- /Source/ChannelsN163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsN163.h -------------------------------------------------------------------------------- /Source/ChannelsS5B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsS5B.cpp -------------------------------------------------------------------------------- /Source/ChannelsS5B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsS5B.h -------------------------------------------------------------------------------- /Source/ChannelsVRC6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsVRC6.cpp -------------------------------------------------------------------------------- /Source/ChannelsVRC6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsVRC6.h -------------------------------------------------------------------------------- /Source/ChannelsVRC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsVRC7.cpp -------------------------------------------------------------------------------- /Source/ChannelsVRC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChannelsVRC7.h -------------------------------------------------------------------------------- /Source/ChipHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChipHandler.cpp -------------------------------------------------------------------------------- /Source/ChipHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChipHandler.h -------------------------------------------------------------------------------- /Source/ChipHandlerS5B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChipHandlerS5B.cpp -------------------------------------------------------------------------------- /Source/ChipHandlerS5B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChipHandlerS5B.h -------------------------------------------------------------------------------- /Source/ChipHandlerVRC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChipHandlerVRC7.cpp -------------------------------------------------------------------------------- /Source/ChipHandlerVRC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChipHandlerVRC7.h -------------------------------------------------------------------------------- /Source/Chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Chunk.cpp -------------------------------------------------------------------------------- /Source/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Chunk.h -------------------------------------------------------------------------------- /Source/ChunkRenderBinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChunkRenderBinary.cpp -------------------------------------------------------------------------------- /Source/ChunkRenderBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChunkRenderBinary.h -------------------------------------------------------------------------------- /Source/ChunkRenderText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChunkRenderText.cpp -------------------------------------------------------------------------------- /Source/ChunkRenderText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ChunkRenderText.h -------------------------------------------------------------------------------- /Source/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Clipboard.cpp -------------------------------------------------------------------------------- /Source/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Clipboard.h -------------------------------------------------------------------------------- /Source/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Color.h -------------------------------------------------------------------------------- /Source/ColorScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ColorScheme.h -------------------------------------------------------------------------------- /Source/CommandLineExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/CommandLineExport.cpp -------------------------------------------------------------------------------- /Source/CommandLineExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/CommandLineExport.h -------------------------------------------------------------------------------- /Source/CommentsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/CommentsDlg.cpp -------------------------------------------------------------------------------- /Source/CommentsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/CommentsDlg.h -------------------------------------------------------------------------------- /Source/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Common.h -------------------------------------------------------------------------------- /Source/Compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Compiler.cpp -------------------------------------------------------------------------------- /Source/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Compiler.h -------------------------------------------------------------------------------- /Source/CompoundAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/CompoundAction.cpp -------------------------------------------------------------------------------- /Source/CompoundAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/CompoundAction.h -------------------------------------------------------------------------------- /Source/ConfigAppearance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigAppearance.cpp -------------------------------------------------------------------------------- /Source/ConfigAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigAppearance.h -------------------------------------------------------------------------------- /Source/ConfigGeneral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigGeneral.cpp -------------------------------------------------------------------------------- /Source/ConfigGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigGeneral.h -------------------------------------------------------------------------------- /Source/ConfigMIDI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigMIDI.cpp -------------------------------------------------------------------------------- /Source/ConfigMIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigMIDI.h -------------------------------------------------------------------------------- /Source/ConfigMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigMixer.cpp -------------------------------------------------------------------------------- /Source/ConfigMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigMixer.h -------------------------------------------------------------------------------- /Source/ConfigShortcuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigShortcuts.cpp -------------------------------------------------------------------------------- /Source/ConfigShortcuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigShortcuts.h -------------------------------------------------------------------------------- /Source/ConfigSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigSound.cpp -------------------------------------------------------------------------------- /Source/ConfigSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigSound.h -------------------------------------------------------------------------------- /Source/ConfigVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigVersion.cpp -------------------------------------------------------------------------------- /Source/ConfigVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ConfigVersion.h -------------------------------------------------------------------------------- /Source/ControlPanelDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ControlPanelDlg.cpp -------------------------------------------------------------------------------- /Source/ControlPanelDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ControlPanelDlg.h -------------------------------------------------------------------------------- /Source/CreateWaveDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/CreateWaveDlg.cpp -------------------------------------------------------------------------------- /Source/CreateWaveDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/CreateWaveDlg.h -------------------------------------------------------------------------------- /Source/CustomControls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/CustomControls.cpp -------------------------------------------------------------------------------- /Source/CustomControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/CustomControls.h -------------------------------------------------------------------------------- /Source/DPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DPI.cpp -------------------------------------------------------------------------------- /Source/DPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DPI.h -------------------------------------------------------------------------------- /Source/DSampleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DSampleManager.cpp -------------------------------------------------------------------------------- /Source/DSampleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DSampleManager.h -------------------------------------------------------------------------------- /Source/DetuneDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DetuneDlg.cpp -------------------------------------------------------------------------------- /Source/DetuneDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DetuneDlg.h -------------------------------------------------------------------------------- /Source/DetuneTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DetuneTable.cpp -------------------------------------------------------------------------------- /Source/DetuneTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DetuneTable.h -------------------------------------------------------------------------------- /Source/DialogReBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DialogReBar.cpp -------------------------------------------------------------------------------- /Source/DialogReBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DialogReBar.h -------------------------------------------------------------------------------- /Source/DirectSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DirectSound.cpp -------------------------------------------------------------------------------- /Source/DirectSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DirectSound.h -------------------------------------------------------------------------------- /Source/DocumentFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DocumentFile.cpp -------------------------------------------------------------------------------- /Source/DocumentFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/DocumentFile.h -------------------------------------------------------------------------------- /Source/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Driver.h -------------------------------------------------------------------------------- /Source/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Effect.h -------------------------------------------------------------------------------- /Source/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Exception.cpp -------------------------------------------------------------------------------- /Source/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Exception.h -------------------------------------------------------------------------------- /Source/ExportDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ExportDialog.cpp -------------------------------------------------------------------------------- /Source/ExportDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ExportDialog.h -------------------------------------------------------------------------------- /Source/FFT/FftBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FFT/FftBuffer.h -------------------------------------------------------------------------------- /Source/FFT/FftComplex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FFT/FftComplex.hpp -------------------------------------------------------------------------------- /Source/FamiTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTracker.cpp -------------------------------------------------------------------------------- /Source/FamiTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTracker.h -------------------------------------------------------------------------------- /Source/FamiTrackerDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerDefines.h -------------------------------------------------------------------------------- /Source/FamiTrackerDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerDoc.cpp -------------------------------------------------------------------------------- /Source/FamiTrackerDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerDoc.h -------------------------------------------------------------------------------- /Source/FamiTrackerDocIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerDocIO.cpp -------------------------------------------------------------------------------- /Source/FamiTrackerDocIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerDocIO.h -------------------------------------------------------------------------------- /Source/FamiTrackerDocIOCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerDocIOCommon.h -------------------------------------------------------------------------------- /Source/FamiTrackerDocIOJson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerDocIOJson.cpp -------------------------------------------------------------------------------- /Source/FamiTrackerDocIOJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerDocIOJson.h -------------------------------------------------------------------------------- /Source/FamiTrackerDocOldIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerDocOldIO.cpp -------------------------------------------------------------------------------- /Source/FamiTrackerDocOldIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerDocOldIO.h -------------------------------------------------------------------------------- /Source/FamiTrackerEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerEnv.cpp -------------------------------------------------------------------------------- /Source/FamiTrackerEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerEnv.h -------------------------------------------------------------------------------- /Source/FamiTrackerModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerModule.cpp -------------------------------------------------------------------------------- /Source/FamiTrackerModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerModule.h -------------------------------------------------------------------------------- /Source/FamiTrackerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerView.cpp -------------------------------------------------------------------------------- /Source/FamiTrackerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerView.h -------------------------------------------------------------------------------- /Source/FamiTrackerViewMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FamiTrackerViewMessage.h -------------------------------------------------------------------------------- /Source/FileDialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FileDialogs.cpp -------------------------------------------------------------------------------- /Source/FileDialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FileDialogs.h -------------------------------------------------------------------------------- /Source/FindDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FindDlg.cpp -------------------------------------------------------------------------------- /Source/FindDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FindDlg.h -------------------------------------------------------------------------------- /Source/FrameAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FrameAction.cpp -------------------------------------------------------------------------------- /Source/FrameAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FrameAction.h -------------------------------------------------------------------------------- /Source/FrameClipData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FrameClipData.cpp -------------------------------------------------------------------------------- /Source/FrameClipData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FrameClipData.h -------------------------------------------------------------------------------- /Source/FrameEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FrameEditor.cpp -------------------------------------------------------------------------------- /Source/FrameEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FrameEditor.h -------------------------------------------------------------------------------- /Source/FrameEditorModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FrameEditorModel.cpp -------------------------------------------------------------------------------- /Source/FrameEditorModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FrameEditorModel.h -------------------------------------------------------------------------------- /Source/FrameEditorTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FrameEditorTypes.cpp -------------------------------------------------------------------------------- /Source/FrameEditorTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/FrameEditorTypes.h -------------------------------------------------------------------------------- /Source/GotoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GotoDlg.cpp -------------------------------------------------------------------------------- /Source/GotoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GotoDlg.h -------------------------------------------------------------------------------- /Source/GraphEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GraphEditor.cpp -------------------------------------------------------------------------------- /Source/GraphEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GraphEditor.h -------------------------------------------------------------------------------- /Source/GraphEditorComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GraphEditorComponent.cpp -------------------------------------------------------------------------------- /Source/GraphEditorComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GraphEditorComponent.h -------------------------------------------------------------------------------- /Source/GraphEditorComponentImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GraphEditorComponentImpl.cpp -------------------------------------------------------------------------------- /Source/GraphEditorComponentImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GraphEditorComponentImpl.h -------------------------------------------------------------------------------- /Source/GraphEditorFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GraphEditorFactory.cpp -------------------------------------------------------------------------------- /Source/GraphEditorFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GraphEditorFactory.h -------------------------------------------------------------------------------- /Source/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Graphics.cpp -------------------------------------------------------------------------------- /Source/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Graphics.h -------------------------------------------------------------------------------- /Source/GrooveDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GrooveDlg.cpp -------------------------------------------------------------------------------- /Source/GrooveDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/GrooveDlg.h -------------------------------------------------------------------------------- /Source/Highlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Highlight.h -------------------------------------------------------------------------------- /Source/InstCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstCompiler.cpp -------------------------------------------------------------------------------- /Source/InstCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstCompiler.h -------------------------------------------------------------------------------- /Source/InstHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstHandler.h -------------------------------------------------------------------------------- /Source/InstHandlerDPCM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstHandlerDPCM.cpp -------------------------------------------------------------------------------- /Source/InstHandlerDPCM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstHandlerDPCM.h -------------------------------------------------------------------------------- /Source/InstHandlerVRC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstHandlerVRC7.cpp -------------------------------------------------------------------------------- /Source/InstHandlerVRC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstHandlerVRC7.h -------------------------------------------------------------------------------- /Source/Instrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Instrument.cpp -------------------------------------------------------------------------------- /Source/Instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Instrument.h -------------------------------------------------------------------------------- /Source/Instrument2A03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Instrument2A03.cpp -------------------------------------------------------------------------------- /Source/Instrument2A03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Instrument2A03.h -------------------------------------------------------------------------------- /Source/InstrumentEditDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditDlg.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditDlg.h -------------------------------------------------------------------------------- /Source/InstrumentEditPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditPanel.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditPanel.h -------------------------------------------------------------------------------- /Source/InstrumentEditorDPCM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorDPCM.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorDPCM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorDPCM.h -------------------------------------------------------------------------------- /Source/InstrumentEditorFDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorFDS.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorFDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorFDS.h -------------------------------------------------------------------------------- /Source/InstrumentEditorFDSEnvelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorFDSEnvelope.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorFDSEnvelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorFDSEnvelope.h -------------------------------------------------------------------------------- /Source/InstrumentEditorN163Wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorN163Wave.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorN163Wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorN163Wave.h -------------------------------------------------------------------------------- /Source/InstrumentEditorSeq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorSeq.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorSeq.h -------------------------------------------------------------------------------- /Source/InstrumentEditorVRC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorVRC7.cpp -------------------------------------------------------------------------------- /Source/InstrumentEditorVRC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentEditorVRC7.h -------------------------------------------------------------------------------- /Source/InstrumentFDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentFDS.cpp -------------------------------------------------------------------------------- /Source/InstrumentFDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentFDS.h -------------------------------------------------------------------------------- /Source/InstrumentFileTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentFileTree.cpp -------------------------------------------------------------------------------- /Source/InstrumentFileTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentFileTree.h -------------------------------------------------------------------------------- /Source/InstrumentIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentIO.cpp -------------------------------------------------------------------------------- /Source/InstrumentIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentIO.h -------------------------------------------------------------------------------- /Source/InstrumentListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentListCtrl.cpp -------------------------------------------------------------------------------- /Source/InstrumentListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentListCtrl.h -------------------------------------------------------------------------------- /Source/InstrumentManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentManager.cpp -------------------------------------------------------------------------------- /Source/InstrumentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentManager.h -------------------------------------------------------------------------------- /Source/InstrumentManagerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentManagerInterface.h -------------------------------------------------------------------------------- /Source/InstrumentN163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentN163.cpp -------------------------------------------------------------------------------- /Source/InstrumentN163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentN163.h -------------------------------------------------------------------------------- /Source/InstrumentRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentRecorder.cpp -------------------------------------------------------------------------------- /Source/InstrumentRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentRecorder.h -------------------------------------------------------------------------------- /Source/InstrumentS5B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentS5B.cpp -------------------------------------------------------------------------------- /Source/InstrumentS5B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentS5B.h -------------------------------------------------------------------------------- /Source/InstrumentService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentService.cpp -------------------------------------------------------------------------------- /Source/InstrumentService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentService.h -------------------------------------------------------------------------------- /Source/InstrumentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentType.h -------------------------------------------------------------------------------- /Source/InstrumentTypeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentTypeImpl.cpp -------------------------------------------------------------------------------- /Source/InstrumentTypeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentTypeImpl.h -------------------------------------------------------------------------------- /Source/InstrumentVRC6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentVRC6.cpp -------------------------------------------------------------------------------- /Source/InstrumentVRC6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentVRC6.h -------------------------------------------------------------------------------- /Source/InstrumentVRC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentVRC7.cpp -------------------------------------------------------------------------------- /Source/InstrumentVRC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/InstrumentVRC7.h -------------------------------------------------------------------------------- /Source/IntRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/IntRange.h -------------------------------------------------------------------------------- /Source/Kraid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Kraid.cpp -------------------------------------------------------------------------------- /Source/Kraid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Kraid.h -------------------------------------------------------------------------------- /Source/MIDI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/MIDI.cpp -------------------------------------------------------------------------------- /Source/MIDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/MIDI.h -------------------------------------------------------------------------------- /Source/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/MainFrm.cpp -------------------------------------------------------------------------------- /Source/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/MainFrm.h -------------------------------------------------------------------------------- /Source/ModSequenceEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModSequenceEditor.cpp -------------------------------------------------------------------------------- /Source/ModSequenceEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModSequenceEditor.h -------------------------------------------------------------------------------- /Source/ModuleAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModuleAction.cpp -------------------------------------------------------------------------------- /Source/ModuleAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModuleAction.h -------------------------------------------------------------------------------- /Source/ModuleException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModuleException.cpp -------------------------------------------------------------------------------- /Source/ModuleException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModuleException.h -------------------------------------------------------------------------------- /Source/ModuleImportDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModuleImportDlg.cpp -------------------------------------------------------------------------------- /Source/ModuleImportDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModuleImportDlg.h -------------------------------------------------------------------------------- /Source/ModuleImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModuleImporter.cpp -------------------------------------------------------------------------------- /Source/ModuleImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModuleImporter.h -------------------------------------------------------------------------------- /Source/ModulePropertiesDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModulePropertiesDlg.cpp -------------------------------------------------------------------------------- /Source/ModulePropertiesDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/ModulePropertiesDlg.h -------------------------------------------------------------------------------- /Source/NoteName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/NoteName.cpp -------------------------------------------------------------------------------- /Source/NoteName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/NoteName.h -------------------------------------------------------------------------------- /Source/NoteQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/NoteQueue.cpp -------------------------------------------------------------------------------- /Source/NoteQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/NoteQueue.h -------------------------------------------------------------------------------- /Source/NumConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/NumConv.h -------------------------------------------------------------------------------- /Source/OldSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/OldSequence.cpp -------------------------------------------------------------------------------- /Source/OldSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/OldSequence.h -------------------------------------------------------------------------------- /Source/PCMImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PCMImport.cpp -------------------------------------------------------------------------------- /Source/PCMImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PCMImport.h -------------------------------------------------------------------------------- /Source/PatternAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternAction.cpp -------------------------------------------------------------------------------- /Source/PatternAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternAction.h -------------------------------------------------------------------------------- /Source/PatternClipData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternClipData.cpp -------------------------------------------------------------------------------- /Source/PatternClipData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternClipData.h -------------------------------------------------------------------------------- /Source/PatternCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternCompiler.cpp -------------------------------------------------------------------------------- /Source/PatternCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternCompiler.h -------------------------------------------------------------------------------- /Source/PatternComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternComponent.cpp -------------------------------------------------------------------------------- /Source/PatternComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternComponent.h -------------------------------------------------------------------------------- /Source/PatternData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternData.cpp -------------------------------------------------------------------------------- /Source/PatternData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternData.h -------------------------------------------------------------------------------- /Source/PatternEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternEditor.cpp -------------------------------------------------------------------------------- /Source/PatternEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternEditor.h -------------------------------------------------------------------------------- /Source/PatternEditorTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternEditorTypes.h -------------------------------------------------------------------------------- /Source/PatternNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PatternNote.h -------------------------------------------------------------------------------- /Source/PerformanceDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PerformanceDlg.cpp -------------------------------------------------------------------------------- /Source/PerformanceDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PerformanceDlg.h -------------------------------------------------------------------------------- /Source/PeriodTables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PeriodTables.cpp -------------------------------------------------------------------------------- /Source/PeriodTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PeriodTables.h -------------------------------------------------------------------------------- /Source/PlayerCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PlayerCursor.cpp -------------------------------------------------------------------------------- /Source/PlayerCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/PlayerCursor.h -------------------------------------------------------------------------------- /Source/RecordSettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/RecordSettingsDlg.cpp -------------------------------------------------------------------------------- /Source/RecordSettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/RecordSettingsDlg.h -------------------------------------------------------------------------------- /Source/RegisterDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/RegisterDisplay.cpp -------------------------------------------------------------------------------- /Source/RegisterDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/RegisterDisplay.h -------------------------------------------------------------------------------- /Source/RegisterState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/RegisterState.cpp -------------------------------------------------------------------------------- /Source/RegisterState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/RegisterState.h -------------------------------------------------------------------------------- /Source/SampleEditorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SampleEditorDlg.cpp -------------------------------------------------------------------------------- /Source/SampleEditorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SampleEditorDlg.h -------------------------------------------------------------------------------- /Source/SampleEditorView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SampleEditorView.cpp -------------------------------------------------------------------------------- /Source/SampleEditorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SampleEditorView.h -------------------------------------------------------------------------------- /Source/SelectionRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SelectionRange.cpp -------------------------------------------------------------------------------- /Source/SelectionRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SelectionRange.h -------------------------------------------------------------------------------- /Source/SeqInstHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstHandler.cpp -------------------------------------------------------------------------------- /Source/SeqInstHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstHandler.h -------------------------------------------------------------------------------- /Source/SeqInstHandler2A03Pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstHandler2A03Pulse.h -------------------------------------------------------------------------------- /Source/SeqInstHandlerFDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstHandlerFDS.cpp -------------------------------------------------------------------------------- /Source/SeqInstHandlerFDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstHandlerFDS.h -------------------------------------------------------------------------------- /Source/SeqInstHandlerN163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstHandlerN163.cpp -------------------------------------------------------------------------------- /Source/SeqInstHandlerN163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstHandlerN163.h -------------------------------------------------------------------------------- /Source/SeqInstHandlerS5B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstHandlerS5B.cpp -------------------------------------------------------------------------------- /Source/SeqInstHandlerS5B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstHandlerS5B.h -------------------------------------------------------------------------------- /Source/SeqInstHandlerSawtooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstHandlerSawtooth.cpp -------------------------------------------------------------------------------- /Source/SeqInstHandlerSawtooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstHandlerSawtooth.h -------------------------------------------------------------------------------- /Source/SeqInstrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstrument.cpp -------------------------------------------------------------------------------- /Source/SeqInstrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SeqInstrument.h -------------------------------------------------------------------------------- /Source/Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Sequence.cpp -------------------------------------------------------------------------------- /Source/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Sequence.h -------------------------------------------------------------------------------- /Source/SequenceCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SequenceCollection.cpp -------------------------------------------------------------------------------- /Source/SequenceCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SequenceCollection.h -------------------------------------------------------------------------------- /Source/SequenceEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SequenceEditor.cpp -------------------------------------------------------------------------------- /Source/SequenceEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SequenceEditor.h -------------------------------------------------------------------------------- /Source/SequenceEditorMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SequenceEditorMessage.h -------------------------------------------------------------------------------- /Source/SequenceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SequenceManager.cpp -------------------------------------------------------------------------------- /Source/SequenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SequenceManager.h -------------------------------------------------------------------------------- /Source/SequenceParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SequenceParser.cpp -------------------------------------------------------------------------------- /Source/SequenceParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SequenceParser.h -------------------------------------------------------------------------------- /Source/SequenceSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SequenceSetting.cpp -------------------------------------------------------------------------------- /Source/SequenceSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SequenceSetting.h -------------------------------------------------------------------------------- /Source/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Settings.cpp -------------------------------------------------------------------------------- /Source/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/Settings.h -------------------------------------------------------------------------------- /Source/SettingsService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SettingsService.cpp -------------------------------------------------------------------------------- /Source/SettingsService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SettingsService.h -------------------------------------------------------------------------------- /Source/SimpleFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SimpleFile.cpp -------------------------------------------------------------------------------- /Source/SimpleFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SimpleFile.h -------------------------------------------------------------------------------- /Source/SizeEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SizeEditor.cpp -------------------------------------------------------------------------------- /Source/SizeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SizeEditor.h -------------------------------------------------------------------------------- /Source/SongData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SongData.cpp -------------------------------------------------------------------------------- /Source/SongData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SongData.h -------------------------------------------------------------------------------- /Source/SongLengthScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SongLengthScanner.cpp -------------------------------------------------------------------------------- /Source/SongLengthScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SongLengthScanner.h -------------------------------------------------------------------------------- /Source/SongState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SongState.cpp -------------------------------------------------------------------------------- /Source/SongState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SongState.h -------------------------------------------------------------------------------- /Source/SongView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SongView.cpp -------------------------------------------------------------------------------- /Source/SongView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SongView.h -------------------------------------------------------------------------------- /Source/SoundChipService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundChipService.cpp -------------------------------------------------------------------------------- /Source/SoundChipService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundChipService.h -------------------------------------------------------------------------------- /Source/SoundChipSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundChipSet.cpp -------------------------------------------------------------------------------- /Source/SoundChipSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundChipSet.h -------------------------------------------------------------------------------- /Source/SoundChipType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundChipType.h -------------------------------------------------------------------------------- /Source/SoundChipTypeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundChipTypeImpl.cpp -------------------------------------------------------------------------------- /Source/SoundChipTypeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundChipTypeImpl.h -------------------------------------------------------------------------------- /Source/SoundDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundDriver.cpp -------------------------------------------------------------------------------- /Source/SoundDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundDriver.h -------------------------------------------------------------------------------- /Source/SoundGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundGen.cpp -------------------------------------------------------------------------------- /Source/SoundGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundGen.h -------------------------------------------------------------------------------- /Source/SoundGenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SoundGenBase.h -------------------------------------------------------------------------------- /Source/SpeedDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SpeedDlg.cpp -------------------------------------------------------------------------------- /Source/SpeedDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SpeedDlg.h -------------------------------------------------------------------------------- /Source/SplitKeyboardDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SplitKeyboardDlg.cpp -------------------------------------------------------------------------------- /Source/SplitKeyboardDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SplitKeyboardDlg.h -------------------------------------------------------------------------------- /Source/StretchDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/StretchDlg.cpp -------------------------------------------------------------------------------- /Source/StretchDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/StretchDlg.h -------------------------------------------------------------------------------- /Source/StringClipData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/StringClipData.h -------------------------------------------------------------------------------- /Source/StrongOrdering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/StrongOrdering.h -------------------------------------------------------------------------------- /Source/SwapDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SwapDlg.cpp -------------------------------------------------------------------------------- /Source/SwapDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/SwapDlg.h -------------------------------------------------------------------------------- /Source/TempoCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TempoCounter.cpp -------------------------------------------------------------------------------- /Source/TempoCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TempoCounter.h -------------------------------------------------------------------------------- /Source/TempoDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TempoDisplay.cpp -------------------------------------------------------------------------------- /Source/TempoDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TempoDisplay.h -------------------------------------------------------------------------------- /Source/TextExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TextExporter.cpp -------------------------------------------------------------------------------- /Source/TextExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TextExporter.h -------------------------------------------------------------------------------- /Source/TrackData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TrackData.cpp -------------------------------------------------------------------------------- /Source/TrackData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TrackData.h -------------------------------------------------------------------------------- /Source/TrackerChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TrackerChannel.cpp -------------------------------------------------------------------------------- /Source/TrackerChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TrackerChannel.h -------------------------------------------------------------------------------- /Source/TransposeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TransposeDlg.cpp -------------------------------------------------------------------------------- /Source/TransposeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/TransposeDlg.h -------------------------------------------------------------------------------- /Source/VersionChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VersionChecker.cpp -------------------------------------------------------------------------------- /Source/VersionChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VersionChecker.h -------------------------------------------------------------------------------- /Source/VisualizerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VisualizerBase.cpp -------------------------------------------------------------------------------- /Source/VisualizerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VisualizerBase.h -------------------------------------------------------------------------------- /Source/VisualizerScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VisualizerScope.cpp -------------------------------------------------------------------------------- /Source/VisualizerScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VisualizerScope.h -------------------------------------------------------------------------------- /Source/VisualizerSpectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VisualizerSpectrum.cpp -------------------------------------------------------------------------------- /Source/VisualizerSpectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VisualizerSpectrum.h -------------------------------------------------------------------------------- /Source/VisualizerStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VisualizerStatic.cpp -------------------------------------------------------------------------------- /Source/VisualizerStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VisualizerStatic.h -------------------------------------------------------------------------------- /Source/VisualizerWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VisualizerWnd.cpp -------------------------------------------------------------------------------- /Source/VisualizerWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/VisualizerWnd.h -------------------------------------------------------------------------------- /Source/WavProgressDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WavProgressDlg.cpp -------------------------------------------------------------------------------- /Source/WavProgressDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WavProgressDlg.h -------------------------------------------------------------------------------- /Source/WaveEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WaveEditor.cpp -------------------------------------------------------------------------------- /Source/WaveEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WaveEditor.h -------------------------------------------------------------------------------- /Source/WaveRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WaveRenderer.cpp -------------------------------------------------------------------------------- /Source/WaveRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WaveRenderer.h -------------------------------------------------------------------------------- /Source/WaveRendererFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WaveRendererFactory.cpp -------------------------------------------------------------------------------- /Source/WaveRendererFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WaveRendererFactory.h -------------------------------------------------------------------------------- /Source/WaveStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WaveStream.cpp -------------------------------------------------------------------------------- /Source/WaveStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WaveStream.h -------------------------------------------------------------------------------- /Source/WaveformGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WaveformGenerator.cpp -------------------------------------------------------------------------------- /Source/WaveformGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WaveformGenerator.h -------------------------------------------------------------------------------- /Source/WavegenBuiltin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WavegenBuiltin.cpp -------------------------------------------------------------------------------- /Source/WavegenBuiltin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WavegenBuiltin.h -------------------------------------------------------------------------------- /Source/WinSDK/VersionHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WinSDK/VersionHelpers.h -------------------------------------------------------------------------------- /Source/WinSDK/winapifamily.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/WinSDK/winapifamily.h -------------------------------------------------------------------------------- /Source/array_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/array_view.h -------------------------------------------------------------------------------- /Source/clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/clip.h -------------------------------------------------------------------------------- /Source/drivers/drv_2a03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/drivers/drv_2a03.h -------------------------------------------------------------------------------- /Source/drivers/drv_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/drivers/drv_all.h -------------------------------------------------------------------------------- /Source/drivers/drv_fds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/drivers/drv_fds.h -------------------------------------------------------------------------------- /Source/drivers/drv_mmc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/drivers/drv_mmc5.h -------------------------------------------------------------------------------- /Source/drivers/drv_n163.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/drivers/drv_n163.h -------------------------------------------------------------------------------- /Source/drivers/drv_s5b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/drivers/drv_s5b.h -------------------------------------------------------------------------------- /Source/drivers/drv_vrc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/drivers/drv_vrc6.h -------------------------------------------------------------------------------- /Source/drivers/drv_vrc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/drivers/drv_vrc7.h -------------------------------------------------------------------------------- /Source/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/json/json.hpp -------------------------------------------------------------------------------- /Source/resampler/resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/resampler/resample.cpp -------------------------------------------------------------------------------- /Source/resampler/resample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/resampler/resample.hpp -------------------------------------------------------------------------------- /Source/resampler/resample.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/resampler/resample.inl -------------------------------------------------------------------------------- /Source/resampler/sinc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/resampler/sinc.cpp -------------------------------------------------------------------------------- /Source/resampler/sinc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/resampler/sinc.hpp -------------------------------------------------------------------------------- /Source/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/stdafx.cpp -------------------------------------------------------------------------------- /Source/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/stdafx.h -------------------------------------------------------------------------------- /Source/str_conv/str_conv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/str_conv/str_conv.hpp -------------------------------------------------------------------------------- /Source/str_conv/utf8_conv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/str_conv/utf8_conv.hpp -------------------------------------------------------------------------------- /Source/sv_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/sv_regex.h -------------------------------------------------------------------------------- /Source/to_sv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/to_sv.h -------------------------------------------------------------------------------- /Source/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/version.cpp -------------------------------------------------------------------------------- /Source/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/Source/version.h -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/appveyor.yml -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/changelog.txt -------------------------------------------------------------------------------- /fuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/fuzz/Makefile -------------------------------------------------------------------------------- /fuzz/SequenceParserTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/fuzz/SequenceParserTest.cpp -------------------------------------------------------------------------------- /fuzz/StrConvTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/fuzz/StrConvTest.cpp -------------------------------------------------------------------------------- /fuzz/testcases/SequenceParser/0/1.txt: -------------------------------------------------------------------------------- 1 | 0 -1 15 16 2 | -------------------------------------------------------------------------------- /fuzz/testcases/SequenceParser/0/2.txt: -------------------------------------------------------------------------------- 1 | | 1 2 | -------------------------------------------------------------------------------- /fuzz/testcases/SequenceParser/0/3.txt: -------------------------------------------------------------------------------- 1 | 2:50 3:50:9 2 | -------------------------------------------------------------------------------- /fuzz/testcases/SequenceParser/0/4.txt: -------------------------------------------------------------------------------- 1 | \ 1 | 2 2 | -------------------------------------------------------------------------------- /fuzz/testcases/SequenceParser/2/1.txt: -------------------------------------------------------------------------------- 1 | 0 12 -------------------------------------------------------------------------------- /fuzz/testcases/SequenceParser/2/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/fuzz/testcases/SequenceParser/2/2.txt -------------------------------------------------------------------------------- /fuzz/testcases/SequenceParser/2/3.txt: -------------------------------------------------------------------------------- 1 | -1 | 1 / 2 -------------------------------------------------------------------------------- /fuzz/testcases/SequenceParser/2/4.txt: -------------------------------------------------------------------------------- 1 | | 1:2 3:4:5'6 -------------------------------------------------------------------------------- /fuzz/testcases/StrConv/1.txt: -------------------------------------------------------------------------------- 1 | Who Did This 😂😂 -------------------------------------------------------------------------------- /libft0cc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/CMakeLists.txt -------------------------------------------------------------------------------- /libft0cc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/README.md -------------------------------------------------------------------------------- /libft0cc/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(ft0cc) 2 | -------------------------------------------------------------------------------- /libft0cc/include/ft0cc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/include/ft0cc/CMakeLists.txt -------------------------------------------------------------------------------- /libft0cc/include/ft0cc/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/include/ft0cc/doc/CMakeLists.txt -------------------------------------------------------------------------------- /libft0cc/include/ft0cc/doc/dpcm_sample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/include/ft0cc/doc/dpcm_sample.hpp -------------------------------------------------------------------------------- /libft0cc/include/ft0cc/doc/groove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/include/ft0cc/doc/groove.hpp -------------------------------------------------------------------------------- /libft0cc/include/ft0cc/doc/inst_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/include/ft0cc/doc/inst_sequence.hpp -------------------------------------------------------------------------------- /libft0cc/include/ft0cc/doc/pitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/include/ft0cc/doc/pitch.hpp -------------------------------------------------------------------------------- /libft0cc/include/ft0cc/enum_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/include/ft0cc/enum_traits.h -------------------------------------------------------------------------------- /libft0cc/include/ft0cc/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/include/ft0cc/fs.h -------------------------------------------------------------------------------- /libft0cc/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(ft0cc) 2 | -------------------------------------------------------------------------------- /libft0cc/src/ft0cc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/src/ft0cc.cpp -------------------------------------------------------------------------------- /libft0cc/src/ft0cc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(doc) 2 | -------------------------------------------------------------------------------- /libft0cc/src/ft0cc/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/src/ft0cc/doc/CMakeLists.txt -------------------------------------------------------------------------------- /libft0cc/src/ft0cc/doc/dpcm_sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/src/ft0cc/doc/dpcm_sample.cpp -------------------------------------------------------------------------------- /libft0cc/src/ft0cc/doc/groove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/src/ft0cc/doc/groove.cpp -------------------------------------------------------------------------------- /libft0cc/src/ft0cc/doc/inst_sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/src/ft0cc/doc/inst_sequence.cpp -------------------------------------------------------------------------------- /libft0cc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/test/CMakeLists.txt -------------------------------------------------------------------------------- /libft0cc/test/ft0cc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/test/ft0cc/CMakeLists.txt -------------------------------------------------------------------------------- /libft0cc/test/ft0cc/doc/dpcm_sample_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/test/ft0cc/doc/dpcm_sample_test.cpp -------------------------------------------------------------------------------- /libft0cc/test/ft0cc/doc/groove_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/test/ft0cc/doc/groove_test.cpp -------------------------------------------------------------------------------- /libft0cc/test/ft0cc/doc/inst_sequence_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/test/ft0cc/doc/inst_sequence_test.cpp -------------------------------------------------------------------------------- /libft0cc/test/ft0cc/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/test/ft0cc/test_main.cpp -------------------------------------------------------------------------------- /libft0cc/vc/libft0cc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/vc/libft0cc.vcxproj -------------------------------------------------------------------------------- /libft0cc/vc/libft0cc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/libft0cc/vc/libft0cc.vcxproj.filters -------------------------------------------------------------------------------- /post-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/post-commit.sample -------------------------------------------------------------------------------- /res/0CC-FamiTracker.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/0CC-FamiTracker.rc2 -------------------------------------------------------------------------------- /res/About.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/About.bmp -------------------------------------------------------------------------------- /res/Application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/Application.ico -------------------------------------------------------------------------------- /res/Document.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/Document.ico -------------------------------------------------------------------------------- /res/Inst_2A03.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/Inst_2A03.ico -------------------------------------------------------------------------------- /res/Inst_2A07.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/Inst_2A07.ico -------------------------------------------------------------------------------- /res/Inst_FDS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/Inst_FDS.ico -------------------------------------------------------------------------------- /res/Inst_N163.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/Inst_N163.ico -------------------------------------------------------------------------------- /res/Inst_S5B.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/Inst_S5B.ico -------------------------------------------------------------------------------- /res/Inst_VRC6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/Inst_VRC6.ico -------------------------------------------------------------------------------- /res/Inst_VRC7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/Inst_VRC7.ico -------------------------------------------------------------------------------- /res/InstrumentToolbar-16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/InstrumentToolbar-16.bmp -------------------------------------------------------------------------------- /res/InstrumentToolbar-256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/InstrumentToolbar-256.bmp -------------------------------------------------------------------------------- /res/LeftArrow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/LeftArrow.ico -------------------------------------------------------------------------------- /res/MainToolbar-16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/MainToolbar-16.bmp -------------------------------------------------------------------------------- /res/MainToolbar-256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/MainToolbar-256.bmp -------------------------------------------------------------------------------- /res/RightArrow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/RightArrow.ico -------------------------------------------------------------------------------- /res/key_black_pressed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/key_black_pressed.bmp -------------------------------------------------------------------------------- /res/key_black_unpressed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/key_black_unpressed.bmp -------------------------------------------------------------------------------- /res/key_white_pressed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/key_white_pressed.bmp -------------------------------------------------------------------------------- /res/key_white_unpressed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/res/key_white_unpressed.bmp -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/resource.h -------------------------------------------------------------------------------- /specs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/specs.txt -------------------------------------------------------------------------------- /travis/install_libcxx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HertzDevil/0CC-FamiTracker/HEAD/travis/install_libcxx.sh --------------------------------------------------------------------------------