├── .gitignore ├── DESIGN.md ├── LICENSE.md ├── README.md ├── Source ├── ClientCommon │ ├── ArgParser.cs │ ├── ArgResolver.cs │ ├── Args.cs │ ├── Bootstrap.cs │ ├── ClientCommon.csproj │ ├── Console.cs │ ├── FileSystemExtensions.cs │ ├── IApp.cs │ ├── IArgParser.cs │ ├── IArgResolver.cs │ ├── IFileSystem.cs │ ├── Iteration.cs │ └── PhysicalFileSystem.cs ├── RhythmCodex.Cli.Test │ ├── AppIntegrationFixture.cs │ ├── FakeFileSystem.cs │ ├── Helpers │ │ ├── ArgParserTests.cs │ │ └── PhysicalFileSystemTests.cs │ ├── Modules │ │ └── SsqCliModuleTests.cs │ └── RhythmCodex.Cli.Test.csproj ├── RhythmCodex.Cli │ ├── App.cs │ ├── AppAutofacModule.cs │ ├── AppInfrastructureAutofacModule.cs │ ├── AppProgressTracker.cs │ ├── Boot.cs │ ├── Command.cs │ ├── CommandParameter.cs │ ├── Helpers │ │ └── StreamExtensions.cs │ ├── IApp.cs │ ├── IAppProgressTracker.cs │ ├── ICliModule.cs │ ├── ICommand.cs │ ├── ICommandParameter.cs │ ├── Modules │ │ ├── ArcModule.cs │ │ ├── BeatmaniaModule.cs │ │ ├── BemaniLzModule.cs │ │ ├── BmsModule.cs │ │ ├── DdrModule.cs │ │ ├── GraphicsModule.cs │ │ ├── SsqCliModule.cs │ │ ├── Step1CliModule.cs │ │ ├── Step2CliModule.cs │ │ └── XboxModule.cs │ ├── Orchestration │ │ ├── ArcTaskBuilder.cs │ │ ├── BeatmaniaTaskBuilder.cs │ │ ├── BmsTaskBuilder.cs │ │ ├── CompressionTaskBuilder.cs │ │ ├── DdrTaskBuilder.cs │ │ ├── GraphicsTaskBuilder.cs │ │ ├── Infrastructure │ │ │ ├── ITask.cs │ │ │ ├── ITaskBuilder.cs │ │ │ ├── ITaskFactory.cs │ │ │ ├── ITaskFileFactory.cs │ │ │ ├── InputFile.cs │ │ │ ├── TaskBuilderBase.cs │ │ │ ├── TaskFactory.cs │ │ │ ├── TaskFile.cs │ │ │ └── TaskFileFactory.cs │ │ └── XboxTaskBuilder.cs │ └── RhythmCodex.Cli.csproj ├── RhythmCodex.Lib.Test.Data │ ├── Arc │ │ └── ddra-arc.zip │ ├── Beatmania │ │ ├── 2dx9th.zip │ │ └── chart9th.zip │ ├── BeatmaniaPs2 │ │ ├── bm2dxps2bgm.zip │ │ ├── bm2dxps2encchart.zip │ │ ├── bm2dxps2key.zip │ │ ├── bm2dxps2newbgm.zip │ │ └── bm2dxps2newkey.zip │ ├── BeatmaniaPsx │ │ ├── chart.zip │ │ └── keysounds.zip │ ├── Bms │ │ ├── positive.zip │ │ └── random.zip │ ├── Compression │ │ ├── BemaniLz.TimTest.Expected.zip │ │ ├── BemaniLz.TimTest.zip │ │ └── lzma.zip │ ├── Ddr │ │ ├── mdb.zip │ │ ├── mp3.zip │ │ ├── sbm1.zip │ │ └── sbm2.zip │ ├── Dds │ │ ├── dxt1.zip │ │ ├── dxt5.zip │ │ └── uncompressed.zip │ ├── Djmain │ │ ├── bm1st.zip │ │ ├── bm7th.zip │ │ ├── bmcm.zip │ │ ├── bmcm2.zip │ │ ├── bmfinal.zip │ │ ├── chart.zip │ │ └── popn1.zip │ ├── Flac │ │ └── example.flac.zip │ ├── ImaAdpcm │ │ └── RawXboxAdpcm.zip │ ├── Iso │ │ └── test-iso.zip │ ├── Mp3 │ │ └── example.mp3.zip │ ├── Ogg │ │ └── example.ogg.zip │ ├── Png │ │ └── example.png │ ├── Psf │ │ └── ff9.zip │ ├── RhythmCodex.Test.Data.csproj │ ├── Ssq │ │ ├── freeze.zip │ │ ├── offset.zip │ │ ├── shock.zip │ │ └── solo.zip │ ├── Step1 │ │ ├── 2nd.zip │ │ ├── picky.zip │ │ └── solo.zip │ ├── Step2 │ │ ├── couple.zip │ │ ├── double.zip │ │ └── single.zip │ ├── TestDataBeacon.cs │ ├── Tim │ │ └── extreme1.zip │ ├── Twinkle │ │ └── 8th.zip │ ├── Vag │ │ ├── svag.zip │ │ └── xa2.zip │ ├── Wav │ │ ├── alaw.zip │ │ ├── double.zip │ │ ├── imaadpcm.zip │ │ ├── mp3.zip │ │ ├── msadpcm.zip │ │ ├── pcm16.zip │ │ ├── pcm24.zip │ │ ├── pcm32.zip │ │ ├── pcm8.zip │ │ ├── single.zip │ │ └── ulaw.zip │ ├── Xact │ │ ├── xsb.zip │ │ └── xwb.zip │ └── Xbox │ │ └── kas.zip ├── RhythmCodex.Lib.Test │ ├── Archs.Djmain │ │ ├── Converters │ │ │ ├── AudioDecoderTests.cs │ │ │ ├── DjmainChartDecoderTests.cs │ │ │ └── DjmainUserSampleFilterTests.cs │ │ ├── Integration │ │ │ └── DjmainDecodeIntegrationTests.cs │ │ └── Streamers │ │ │ ├── AudioStreamReaderTests.cs │ │ │ ├── AudioStreamWriterTests.cs │ │ │ ├── ChunkStreamReaderTests.cs │ │ │ ├── DjmainChartEventStreamReaderTests.cs │ │ │ ├── DjmainSampleDefinitionStreamReaderTests.cs │ │ │ └── DjmainSampleDefinitionStreamWriterTests.cs │ ├── Archs.Twinkle │ │ └── Integration │ │ │ └── TwinkleBeatmaniaIntegrationTests.cs │ ├── Archs.Xbox │ │ └── Integration │ │ │ ├── XboxIsoStreamReaderIntegrationTests.cs │ │ │ └── XboxKasStreamReaderIntegrationTests.cs │ ├── Charts.Bms │ │ └── Integration │ │ │ ├── BmsIntegrationTests.cs │ │ │ └── BmsRandomResolverUnitTests.cs │ ├── Charts.Ssq │ │ ├── Converters │ │ │ ├── SsqDecoderTests.cs │ │ │ ├── StepChunkDecoderTests.cs │ │ │ ├── StepChunkEncoderTests.cs │ │ │ ├── StepEventDecoderTests.cs │ │ │ ├── TimingChunkDecoderTests.cs │ │ │ ├── TimingChunkEncoderTests.cs │ │ │ ├── TimingEventDecoderTests.cs │ │ │ ├── TriggerChunkDecoderTests.cs │ │ │ ├── TriggerChunkEncoderTests.cs │ │ │ └── TriggerEventDecoderTests.cs │ │ ├── Integration │ │ │ ├── SsqDecodeIntegrationTests.cs │ │ │ └── SsqEncodeIntegrationTests.cs │ │ ├── Mappers │ │ │ ├── Ddr1Player6PanelMapperTests.cs │ │ │ └── Ddr2Player4PanelMapperTests.cs │ │ └── Streamers │ │ │ ├── ChunkStreamBaseTests.cs │ │ │ ├── ChunkStreamReaderTests.cs │ │ │ ├── ChunkStreamWriterTests.cs │ │ │ ├── SsqStreamWriterTests.cs │ │ │ └── SsqStreamerTests.cs │ ├── Charts.Step1 │ │ ├── Heuristics │ │ │ └── Step1HeuristicTests.cs │ │ └── Integration │ │ │ └── Step1DecodeIntegrationTests.cs │ ├── Charts.Step2 │ │ └── Integration │ │ │ └── Step2DecodeIntegrationTests.cs │ ├── Charts │ │ └── QuantizerTests.cs │ ├── Compressions │ │ └── Integration │ │ │ └── BemaniLzIntegrationTests.cs │ ├── Extensions │ │ └── EnumerableExtensionsTests.cs │ ├── FileSystems.Arc │ │ └── Integration │ │ │ └── ArcIntegrationTests.cs │ ├── FileSystems.Cd │ │ └── Integration │ │ │ └── BinTocIntegrationTests.cs │ ├── FileSystems.Chd │ │ └── Integration │ │ │ └── ChdIntegrationTests.cs │ ├── FileSystems.Iso │ │ └── Integration │ │ │ └── IsoIntegrationTests.cs │ ├── Games.Beatmania.Psx │ │ └── Integration │ │ │ └── BeatmaniaPsxBmDataStreamReaderIntegrationTests.cs │ ├── Games.Beatmania │ │ ├── Integration │ │ │ ├── BeatmaniaPcKeysoundIntegrationTests.cs │ │ │ ├── BeatmaniaPs2ChartIntegrationTests.cs │ │ │ ├── BeatmaniaPs2KeysoundIntegrationTests.cs │ │ │ └── BeatmaniaPsxKeysoundIntegrationTests.cs │ │ └── Streamers │ │ │ ├── BeatmaniaPcAudioEntryStreamReaderTests.cs │ │ │ └── EncryptedBeatmaniaPcAudioStreamReaderTests.cs │ ├── Games.Ddr │ │ ├── Converters │ │ │ └── Ddr573AudioNameFinderTests.cs │ │ └── Integration │ │ │ ├── Ddr573AudioIntegrationTests.cs │ │ │ ├── Ddr573ImageFileNameIntegrationTests.cs │ │ │ ├── Ddr573SongDatabaseIntegrationTests.cs │ │ │ └── DdrPs2FileDataIntegrationTests.cs │ ├── Games.Stepmania │ │ ├── Converters │ │ │ ├── GrooveRadarEncoderTests.cs │ │ │ └── NoteDecoderTests.cs │ │ └── Streamers │ │ │ ├── SmStreamReaderTests.cs │ │ │ └── SmStreamWriterTests.cs │ ├── Games.Vtddd │ │ └── Integration │ │ │ └── DecodeVtdddIntegrationTests.cs │ ├── Graphics.Dds │ │ └── Integration │ │ │ └── DdsIntegrationTests.cs │ ├── Graphics.Tim │ │ └── Integration │ │ │ └── TimIntegrationTests.cs │ ├── Infrastructure.Tasks │ │ └── TaskSpecTests.cs │ ├── Infrastructure │ │ ├── BigRationalTests.cs │ │ └── BitReaderTests.cs │ ├── Plugin.Sdl3 │ │ └── BitmapTests.cs │ ├── RhythmCodex.Lib.Test.csproj │ ├── Sounds.ImaAdpcm │ │ └── Integration │ │ │ └── ImaAdpcmDecodeIntegrationTests.cs │ ├── Sounds.Psf │ │ └── Integration │ │ │ └── PsfIntegrationTests.cs │ ├── Sounds.Vag │ │ └── Integration │ │ │ ├── VagDecodeIntegrationTests.cs │ │ │ └── VagEncodeIntegrationTests.cs │ ├── Sounds.Wav │ │ └── Integration │ │ │ ├── MicrosoftAdpcmEncodeIntegrationTests.cs │ │ │ └── WavDecodeIntegrationTests.cs │ ├── Sounds.Xa │ │ ├── Converters │ │ │ └── XaFrameSplitterTests.cs │ │ └── Integration │ │ │ └── XaDecodeIntegrationTests.cs │ ├── Sounds.Xact │ │ └── Integration │ │ │ └── XactIntegrationTests.cs │ ├── Sounds │ │ ├── AudioDspTests.cs │ │ └── Integration │ │ │ ├── ResamplerIntegrationTests.cs │ │ │ └── SoundStreamReaderTests.cs │ ├── Streamers │ │ └── ByteSwappedReadStreamTests.cs │ ├── Tools.OneShots │ │ ├── DdrOneShots.cs │ │ ├── DjmainOneShots.cs │ │ ├── SmOneShots.cs │ │ └── TwinkleOneShots.cs │ └── Utils.Cursors │ │ ├── ByteMemoryTests.cs │ │ ├── ByteSpanTests.cs │ │ └── StreamTests.cs ├── RhythmCodex.Lib │ ├── Archs.Djmain │ │ ├── Converters │ │ │ ├── DjmainAudioDecoder.cs │ │ │ ├── DjmainChartDecoder.cs │ │ │ ├── DjmainChartMetadataDecoder.cs │ │ │ ├── DjmainDecoder.cs │ │ │ ├── DjmainEventMetadataDecoder.cs │ │ │ ├── DjmainMixer.cs │ │ │ ├── DjmainSampleDecoder.cs │ │ │ ├── DjmainSampleMapConsolidator.cs │ │ │ ├── DjmainSoundDecoder.cs │ │ │ ├── DjmainUsedSampleFilter.cs │ │ │ ├── IDjmainAudioDecoder.cs │ │ │ ├── IDjmainChartDecoder.cs │ │ │ ├── IDjmainChartMetadataDecoder.cs │ │ │ ├── IDjmainDecoder.cs │ │ │ ├── IDjmainEventMetadataDecoder.cs │ │ │ ├── IDjmainSampleDecoder.cs │ │ │ ├── IDjmainSampleMapConsolidator.cs │ │ │ ├── IDjmainSoundDecoder.cs │ │ │ └── IDjmainUsedSampleFilter.cs │ │ ├── DjmainConstants.cs │ │ ├── Heuristics │ │ │ ├── DjmainHddDescriptionHeuristic.cs │ │ │ ├── DjmainOffsetProvider.cs │ │ │ ├── IDjmainHddDescriptionHeuristic.cs │ │ │ └── IDjmainOffsetProvider.cs │ │ ├── Model │ │ │ ├── DjmainArchive.cs │ │ │ ├── DjmainBeatmaniaColumnType.cs │ │ │ ├── DjmainChartEvent.cs │ │ │ ├── DjmainChartType.cs │ │ │ ├── DjmainChunk.cs │ │ │ ├── DjmainChunkFormat.cs │ │ │ ├── DjmainDecodeOptions.cs │ │ │ ├── DjmainEventType.cs │ │ │ ├── DjmainHddDescription.cs │ │ │ ├── DjmainPopnColumnType.cs │ │ │ ├── DjmainSample.cs │ │ │ ├── DjmainSampleInfo.cs │ │ │ └── DjmainSampleSet.cs │ │ └── Streamers │ │ │ ├── DjmainAudioStreamReader.cs │ │ │ ├── DjmainAudioStreamWriter.cs │ │ │ ├── DjmainChartEventStreamReader.cs │ │ │ ├── DjmainChartEventStreamWriter.cs │ │ │ ├── DjmainChunkStreamReader.cs │ │ │ ├── DjmainSampleInfoStreamReader.cs │ │ │ ├── DjmainSampleInfoStreamWriter.cs │ │ │ ├── IDjmainAudioStreamReader.cs │ │ │ ├── IDjmainAudioStreamWriter.cs │ │ │ ├── IDjmainChartEventStreamReader.cs │ │ │ ├── IDjmainChartEventStreamWriter.cs │ │ │ ├── IDjmainChunkStreamReader.cs │ │ │ ├── IDjmainSampleInfoStreamReader.cs │ │ │ └── IDjmainSampleInfoStreamWriter.cs │ ├── Archs.Firebeat │ │ └── Streamers │ │ │ ├── FirebeatBeatmaniaStreamReader.cs │ │ │ └── IFirebeatBeatmaniaStreamReader.cs │ ├── Archs.Psx │ │ └── Heuristics │ │ │ └── PsxExeHeuristic.cs │ ├── Archs.S573 │ │ ├── Converters │ │ │ ├── Digital573AudioDecrypter.cs │ │ │ └── IDigital573AudioDecrypter.cs │ │ ├── Models │ │ │ ├── Digital573Audio.cs │ │ │ └── Digital573AudioKey.cs │ │ └── Providers │ │ │ ├── Digital573AudioKeyDatabase.zip │ │ │ ├── Digital573AudioKeyProvider.cs │ │ │ └── IDigital573AudioKeyProvider.cs │ ├── Archs.Twinkle │ │ ├── Converters │ │ │ ├── ITwinkleBeatmaniaChartDecoder.cs │ │ │ ├── ITwinkleBeatmaniaChartEventConverter.cs │ │ │ ├── ITwinkleBeatmaniaChartMetadataDecoder.cs │ │ │ ├── ITwinkleBeatmaniaDecoder.cs │ │ │ ├── ITwinkleBeatmaniaSoundDecoder.cs │ │ │ ├── ITwinkleBeatmaniaSoundDefinitionDecoder.cs │ │ │ ├── TwinkleBeatmaniaChartDecoder.cs │ │ │ ├── TwinkleBeatmaniaChartEventConverter.cs │ │ │ ├── TwinkleBeatmaniaChartMetadataDecoder.cs │ │ │ ├── TwinkleBeatmaniaDecoder.cs │ │ │ ├── TwinkleBeatmaniaSoundDecoder.cs │ │ │ └── TwinkleBeatmaniaSoundDefinitionDecoder.cs │ │ ├── Heuristics │ │ │ ├── ITwinkleBeatmaniaChartHeuristic.cs │ │ │ └── TwinkleBeatmaniaChartHeuristic.cs │ │ ├── Model │ │ │ ├── TwinkleArchive.cs │ │ │ ├── TwinkleBeatmaniaChartEvent.cs │ │ │ ├── TwinkleBeatmaniaChunk.cs │ │ │ ├── TwinkleBeatmaniaColumnType.cs │ │ │ ├── TwinkleBeatmaniaEventType.cs │ │ │ ├── TwinkleBeatmaniaSoundDefinition.cs │ │ │ ├── TwinkleConstants.cs │ │ │ └── TwinkleDecodeOptions.cs │ │ └── Streamers │ │ │ ├── ITwinkleBeatmaniaStreamReader.cs │ │ │ └── TwinkleBeatmaniaStreamReader.cs │ ├── Archs.Xbox │ │ ├── Converters │ │ │ ├── IXboxIsoInfoDecoder.cs │ │ │ └── XboxIsoInfoDecoder.cs │ │ ├── Model │ │ │ ├── XboxHbnDefinition.cs │ │ │ ├── XboxHbnEntry.cs │ │ │ ├── XboxIsoFileAttributes.cs │ │ │ ├── XboxIsoFileEntry.cs │ │ │ ├── XboxIsoInfo.cs │ │ │ ├── XboxKasDefinition.cs │ │ │ ├── XboxKasEntry.cs │ │ │ └── XboxSngEntry.cs │ │ └── Streamers │ │ │ ├── IXboxHbnStreamReader.cs │ │ │ ├── IXboxIsoStreamReader.cs │ │ │ ├── IXboxKasStreamReader.cs │ │ │ ├── IXboxSngStreamReader.cs │ │ │ ├── XboxHbnStreamReader.cs │ │ │ ├── XboxIsoStreamReader.cs │ │ │ ├── XboxKasStreamReader.cs │ │ │ └── XboxSngStreamReader.cs │ ├── AssemblyProperties.cs │ ├── Charts.Bms │ │ ├── Converters │ │ │ ├── BmsChartType.cs │ │ │ ├── BmsDecoder.cs │ │ │ ├── BmsEncoder.cs │ │ │ ├── BmsEncoderOptions.cs │ │ │ ├── BmsNoteCommandEncoder.cs │ │ │ ├── BmsRandomResolver.cs │ │ │ ├── BmsSoundLoader.cs │ │ │ ├── IBmsDecoder.cs │ │ │ ├── IBmsEncoder.cs │ │ │ ├── IBmsNoteCommandEncoder.cs │ │ │ ├── IBmsRandomResolver.cs │ │ │ └── IBmsSoundLoader.cs │ │ ├── Model │ │ │ ├── BmsChart.cs │ │ │ ├── BmsCommand.cs │ │ │ ├── BmsEvent.cs │ │ │ └── BmsResolverScope.cs │ │ └── Streamers │ │ │ ├── BmsStreamReader.cs │ │ │ ├── BmsStreamWriter.cs │ │ │ ├── IBmsStreamReader.cs │ │ │ └── IBmsStreamWriter.cs │ ├── Charts.Sm │ │ ├── ChartTag.cs │ │ ├── Converters │ │ │ ├── GrooveRadarEncoder.cs │ │ │ ├── IGrooveRadarEncoder.cs │ │ │ ├── INoteCommandStringDecoder.cs │ │ │ ├── INoteCommandStringEncoder.cs │ │ │ ├── INoteDecoder.cs │ │ │ ├── INoteEncoder.cs │ │ │ ├── ISmDecoder.cs │ │ │ ├── ISmEncoder.cs │ │ │ ├── ISmMetadataChanger.cs │ │ │ ├── ITimedCommandStringDecoder.cs │ │ │ ├── ITimedCommandStringEncoder.cs │ │ │ ├── NoteCommandStringDecoder.cs │ │ │ ├── NoteCommandStringEncoder.cs │ │ │ ├── NoteDecoder.cs │ │ │ ├── NoteEncoder.cs │ │ │ ├── SmDecoder.cs │ │ │ ├── SmEncoder.cs │ │ │ ├── SmMetadataChanger.cs │ │ │ ├── TimedCommandStringDecoder.cs │ │ │ └── TimedCommandStringEncoder.cs │ │ ├── Model │ │ │ ├── Command.cs │ │ │ ├── INote.cs │ │ │ ├── Note.cs │ │ │ ├── NoteType.cs │ │ │ ├── SmGameTypes.cs │ │ │ ├── SmNotesDifficulties.cs │ │ │ └── TimedEvent.cs │ │ ├── NotesCommandTag.cs │ │ ├── StepmaniaConstants.cs │ │ └── Streamers │ │ │ ├── ISmStreamReader.cs │ │ │ ├── ISmStreamWriter.cs │ │ │ ├── SmStreamReader.cs │ │ │ └── SmStreamWriter.cs │ ├── Charts.Ssq │ │ ├── Converters │ │ │ ├── ChartInfoDecoder.cs │ │ │ ├── ChartInfoEncoder.cs │ │ │ ├── IChartInfoDecoder.cs │ │ │ ├── IChartInfoEncoder.cs │ │ │ ├── ISsqChunkFilter.cs │ │ │ ├── ISsqDecoder.cs │ │ │ ├── ISsqEncoder.cs │ │ │ ├── ISsqEventDecoder.cs │ │ │ ├── ISsqEventEncoder.cs │ │ │ ├── ISsqIdSelector.cs │ │ │ ├── ISsqInfoChunkDecoder.cs │ │ │ ├── ISsqInfoChunkEncoder.cs │ │ │ ├── IStepChunkDecoder.cs │ │ │ ├── IStepChunkEncoder.cs │ │ │ ├── IStepEventDecoder.cs │ │ │ ├── IStepEventEncoder.cs │ │ │ ├── IStepPanelSplitter.cs │ │ │ ├── ITimingChunkDecoder.cs │ │ │ ├── ITimingChunkEncoder.cs │ │ │ ├── ITimingEventDecoder.cs │ │ │ ├── ITimingEventEncoder.cs │ │ │ ├── ITriggerChunkDecoder.cs │ │ │ ├── ITriggerChunkEncoder.cs │ │ │ ├── ITriggerEventDecoder.cs │ │ │ ├── ITriggerEventEncoder.cs │ │ │ ├── SsqChunkFilter.cs │ │ │ ├── SsqDecoder.cs │ │ │ ├── SsqEncoder.cs │ │ │ ├── SsqEventDecoder.cs │ │ │ ├── SsqIdSelector.cs │ │ │ ├── SsqInfoChunkDecoder.cs │ │ │ ├── StepChunkDecoder.cs │ │ │ ├── StepChunkEncoder.cs │ │ │ ├── StepEventDecoder.cs │ │ │ ├── StepEventEncoder.cs │ │ │ ├── StepPanelSplitter.cs │ │ │ ├── TimingChunkDecoder.cs │ │ │ ├── TimingChunkEncoder.cs │ │ │ ├── TimingEventDecoder.cs │ │ │ ├── TimingEventEncoder.cs │ │ │ ├── TriggerChunkDecoder.cs │ │ │ ├── TriggerChunkEncoder.cs │ │ │ ├── TriggerEventDecoder.cs │ │ │ └── TriggerEventEncoder.cs │ │ ├── Mappers │ │ │ ├── Ddr1Player3PanelMapper.cs │ │ │ ├── Ddr1Player4PanelMapper.cs │ │ │ ├── Ddr1Player6PanelMapper.cs │ │ │ ├── Ddr1Player8PanelMapper.cs │ │ │ ├── Ddr2Player4PanelMapper.cs │ │ │ ├── DdrPanelMapperBase.cs │ │ │ ├── IPanelMapper.cs │ │ │ ├── IPanelMapperSelector.cs │ │ │ └── PanelMapperSelector.cs │ │ ├── Model │ │ │ ├── ChartInfo.cs │ │ │ ├── PanelMapping.cs │ │ │ ├── SsqChunk.cs │ │ │ ├── SsqInfoChunk.cs │ │ │ ├── Step.cs │ │ │ ├── StepChunk.cs │ │ │ ├── Timing.cs │ │ │ ├── TimingChunk.cs │ │ │ └── Trigger.cs │ │ ├── SsqConstants.cs │ │ ├── SsqHeuristic.cs │ │ └── Streamers │ │ │ ├── ChunkStreamReader.cs │ │ │ ├── ChunkStreamWriter.cs │ │ │ ├── IChunkStreamReader.cs │ │ │ ├── IChunkStreamWriter.cs │ │ │ ├── ISsqStreamReader.cs │ │ │ ├── ISsqStreamWriter.cs │ │ │ ├── SsqStreamReader.cs │ │ │ └── SsqStreamWriter.cs │ ├── Charts.Statistics │ │ ├── EventCounter.cs │ │ ├── IEventCounter.cs │ │ ├── IUsedSamplesCounter.cs │ │ └── UsedSamplesCounter.cs │ ├── Charts.Step1 │ │ ├── Converters │ │ │ ├── IStep1ChartInfoDecoder.cs │ │ │ ├── IStep1Decoder.cs │ │ │ ├── IStep1StepChunkDecoder.cs │ │ │ ├── IStep1TimingChunkDecoder.cs │ │ │ ├── Step1ChartInfoDecoder.cs │ │ │ ├── Step1Decoder.cs │ │ │ ├── Step1StepChunkDecoder.cs │ │ │ └── Step1TimingChunkDecoder.cs │ │ ├── Heuristics │ │ │ └── Step1Heuristic.cs │ │ ├── Models │ │ │ └── Step1Chunk.cs │ │ └── Streamers │ │ │ ├── IStep1StreamReader.cs │ │ │ └── Step1StreamReader.cs │ ├── Charts.Step2 │ │ ├── Converters │ │ │ ├── IStep2Decoder.cs │ │ │ └── Step2Decoder.cs │ │ ├── Mappers │ │ │ ├── IStep2EventMapper.cs │ │ │ └── Step2EventMapper.cs │ │ ├── Models │ │ │ ├── Step2Chunk.cs │ │ │ ├── Step2Metadata.cs │ │ │ └── Step2Step.cs │ │ └── Streamers │ │ │ ├── IStep2StreamReader.cs │ │ │ └── Step2StreamReader.cs │ ├── Charts │ │ ├── Filters │ │ │ ├── ChartEventFilter.cs │ │ │ └── IChartEventFilter.cs │ │ └── Models │ │ │ ├── Chart.cs │ │ │ ├── ChartSet.cs │ │ │ └── Event.cs │ ├── Compressions.BemaniLz │ │ └── Processors │ │ │ ├── BemaniLzDecoder.cs │ │ │ ├── BemaniLzEncoder.cs │ │ │ ├── IBemaniLzDecoder.cs │ │ │ └── IBemaniLzEncoder.cs │ ├── Compressions.BemaniLzss │ │ └── Processors │ │ │ ├── BemaniLzssDecoder.cs │ │ │ └── IBemaniLzssDecoder.cs │ ├── Compressions.BemaniLzss2 │ │ └── Processors │ │ │ ├── BemaniLzss2Decoder.cs │ │ │ └── IBemaniLzss2Decoder.cs │ ├── Compressions.Bzip2 │ │ └── Processors │ │ │ └── IBzip2StreamFactory.cs │ ├── Compressions.Lzma │ │ └── Converters │ │ │ └── ILzmaDecoder.cs │ ├── Compressions.Lzw │ │ └── Processors │ │ │ └── ILzwStreamFactory.cs │ ├── Compressions.Zlib │ │ └── Processors │ │ │ ├── IZlibStreamFactory.cs │ │ │ └── ZlibStreamFactory.cs │ ├── Compressions │ │ └── Models │ │ │ ├── Huffman.cs │ │ │ └── HuffmanNode.cs │ ├── Encryptions.Blowfish │ │ └── Converters │ │ │ └── IBlowfishDecrypter.cs │ ├── Extensions │ │ ├── BinaryReaderExtensions.cs │ │ ├── BinaryWriterExtensions.cs │ │ ├── ByteArrayExtensions.cs │ │ ├── ByteExtensions.cs │ │ ├── ChartExtensions.cs │ │ ├── EnumerableExtensions.cs │ │ ├── ObjectExtensions.cs │ │ └── StringExtensions.cs │ ├── FileSystems.Arc │ │ ├── ArcService.cs │ │ ├── Converters │ │ │ ├── ArcFileConverter.cs │ │ │ └── IArcFileConverter.cs │ │ ├── IArcService.cs │ │ ├── Model │ │ │ ├── ArcEntry.cs │ │ │ ├── ArcFile.cs │ │ │ └── ArcHeader.cs │ │ ├── Processors │ │ │ ├── ArcLzDecoder.cs │ │ │ ├── ArcLzEncoder.cs │ │ │ ├── IArcLzDecoder.cs │ │ │ └── IArcLzEncoder.cs │ │ └── Streamers │ │ │ ├── ArcStreamReader.cs │ │ │ ├── ArcStreamWriter.cs │ │ │ ├── IArcStreamReader.cs │ │ │ └── IArcStreamWriter.cs │ ├── FileSystems.Cd │ │ ├── Model │ │ │ ├── CdFile.cs │ │ │ ├── CdSector.cs │ │ │ ├── CueInfo.cs │ │ │ ├── CueTrack.cs │ │ │ ├── ICdFile.cs │ │ │ └── ICdSector.cs │ │ └── Streamers │ │ │ ├── CdSectorOnDiskCollection.cs │ │ │ ├── CdSectorStream.cs │ │ │ ├── CdSectorStreamReader.cs │ │ │ └── ICdSectorStreamReader.cs │ ├── FileSystems.Chd │ │ ├── Model │ │ │ ├── ChdHeaderInfo.cs │ │ │ ├── ChdMapInfo.cs │ │ │ ├── V34EntryTypes.cs │ │ │ └── V5CompressionType.cs │ │ └── Streamers │ │ │ ├── ChdStream.cs │ │ │ ├── ChdStreamFactory.cs │ │ │ └── IChdStreamFactory.cs │ ├── FileSystems.Iso │ │ ├── Converters │ │ │ ├── IIsoBootRecordDecoder.cs │ │ │ ├── IIsoCdFileDecoder.cs │ │ │ ├── IIsoDateTimeDecoder.cs │ │ │ ├── IIsoDescriptorSectorFinder.cs │ │ │ ├── IIsoDirectoryRecordDecoder.cs │ │ │ ├── IIsoDirectoryTableDecoder.cs │ │ │ ├── IIsoPathTableDecoder.cs │ │ │ ├── IIsoPrimaryVolumeDescriptorDecoder.cs │ │ │ ├── IIsoSectorInfoDecoder.cs │ │ │ ├── IIsoStorageMediumDecoder.cs │ │ │ ├── IsoBootRecordDecoder.cs │ │ │ ├── IsoCdFileDecoder.cs │ │ │ ├── IsoDateTimeDecoder.cs │ │ │ ├── IsoDescriptorSectorFinder.cs │ │ │ ├── IsoDirectoryRecordDecoder.cs │ │ │ ├── IsoDirectoryTableDecoder.cs │ │ │ ├── IsoPathTableDecoder.cs │ │ │ ├── IsoPrimaryVolumeDescriptorDecoder.cs │ │ │ ├── IsoSectorInfoDecoder.cs │ │ │ └── IsoStorageMediumDecoder.cs │ │ ├── Model │ │ │ ├── IsoBootRecord.cs │ │ │ ├── IsoDateTime.cs │ │ │ ├── IsoDirectoryRecord.cs │ │ │ ├── IsoFileFlags.cs │ │ │ ├── IsoPathRecord.cs │ │ │ ├── IsoSectorInfo.cs │ │ │ ├── IsoStorageMedium.cs │ │ │ └── IsoVolume.cs │ │ └── Streamers │ │ │ ├── IIsoSectorStreamFactory.cs │ │ │ ├── IIsoSectorStreamReader.cs │ │ │ ├── IsoSectorStreamFactory.cs │ │ │ └── IsoSectorStreamReader.cs │ ├── Games.Beatmania.Pc │ │ ├── Converters │ │ │ ├── BeatmaniaPc1ChartDecoder.cs │ │ │ ├── BeatmaniaPcAudioDecoder.cs │ │ │ ├── IBeatmaniaPc1ChartDecoder.cs │ │ │ └── IBeatmaniaPcAudioDecoder.cs │ │ ├── Models │ │ │ ├── BeatmaniaPc1Chart.cs │ │ │ ├── BeatmaniaPc1Event.cs │ │ │ ├── BeatmaniaPc1EventType.cs │ │ │ ├── BeatmaniaPcAudioEntry.cs │ │ │ └── BeatmaniaPcSongSet.cs │ │ ├── Providers │ │ │ └── BeatmaniaPcConstants.cs │ │ └── Streamers │ │ │ ├── BeatmaniaPc1StreamReader.cs │ │ │ ├── BeatmaniaPc1StreamWriter.cs │ │ │ ├── BeatmaniaPcAudioEntryStreamReader.cs │ │ │ ├── BeatmaniaPcAudioEntryStreamWriter.cs │ │ │ ├── BeatmaniaPcAudioStreamReader.cs │ │ │ ├── EncryptedBeatmaniaPcAudioStreamReader.cs │ │ │ ├── IBeatmaniaPc1StreamReader.cs │ │ │ ├── IBeatmaniaPc1StreamWriter.cs │ │ │ ├── IBeatmaniaPcAudioEntryStreamReader.cs │ │ │ ├── IBeatmaniaPcAudioEntryStreamWriter.cs │ │ │ ├── IBeatmaniaPcAudioStreamReader.cs │ │ │ └── IEncryptedBeatmaniaPcAudioStreamReader.cs │ ├── Games.Beatmania.Ps2 │ │ ├── Converters │ │ │ ├── BeatmaniaPs2BgmDecoder.cs │ │ │ ├── BeatmaniaPs2ChartDecoder.cs │ │ │ ├── BeatmaniaPs2EventDecoder.cs │ │ │ ├── BeatmaniaPs2KeyProvider.cs │ │ │ ├── BeatmaniaPs2KeysoundDecoder.cs │ │ │ ├── IBeatmaniaPs2BgmDecoder.cs │ │ │ ├── IBeatmaniaPs2ChartDecoder.cs │ │ │ ├── IBeatmaniaPs2EventDecoder.cs │ │ │ ├── IBeatmaniaPs2KeyProvider.cs │ │ │ └── IBeatmaniaPs2KeysoundDecoder.cs │ │ ├── Heuristics │ │ │ ├── BeatmaniaPs2NewBgmHeuristic.cs │ │ │ ├── BeatmaniaPs2NewKeysoundHeuristic.cs │ │ │ ├── BeatmaniaPs2NewKeysoundHeuristicResult.cs │ │ │ ├── BeatmaniaPs2OldBgmHeuristic.cs │ │ │ └── BeatmaniaPs2OldKeysoundHeuristic.cs │ │ ├── Models │ │ │ ├── BeatmaniaPs2Bgm.cs │ │ │ ├── BeatmaniaPs2Event.cs │ │ │ ├── BeatmaniaPs2Keysound.cs │ │ │ ├── BeatmaniaPs2KeysoundSet.cs │ │ │ └── BeatmaniaPs2NewInstrument.cs │ │ ├── Streamers │ │ │ ├── BeatmaniaPs2NewBgmStreamReader.cs │ │ │ ├── BeatmaniaPs2NewChartEventStreamReader.cs │ │ │ ├── BeatmaniaPs2NewKeysoundStreamReader.cs │ │ │ ├── BeatmaniaPs2OldBgmStreamReader.cs │ │ │ ├── BeatmaniaPs2OldChartEventStreamReader.cs │ │ │ ├── BeatmaniaPs2OldKeysoundStreamReader.cs │ │ │ ├── IBeatmaniaPs2NewBgmStreamReader.cs │ │ │ ├── IBeatmaniaPs2NewChartEventStreamReader.cs │ │ │ ├── IBeatmaniaPs2NewKeysoundStreamReader.cs │ │ │ ├── IBeatmaniaPs2OldBgmStreamReader.cs │ │ │ ├── IBeatmaniaPs2OldChartEventStreamReader.cs │ │ │ └── IBeatmaniaPs2OldKeysoundStreamReader.cs │ │ └── Streams │ │ │ └── BeatmaniaPs2NewAudioDecryptStream.cs │ ├── Games.Beatmania.Psx │ │ ├── Models │ │ │ ├── BeatmaniaPsxDirectoryEntry.cs │ │ │ ├── BeatmaniaPsxFile.cs │ │ │ ├── BeatmaniaPsxFolder.cs │ │ │ ├── BeatmaniaPsxKeysound.cs │ │ │ └── BeatmaniaPsxKeysoundDirectoryEntry.cs │ │ └── Streamers │ │ │ ├── BeatmaniaPsxBmDataStreamReader.cs │ │ │ ├── BeatmaniaPsxChartEventStreamReader.cs │ │ │ ├── BeatmaniaPsxKeysoundStreamReader.cs │ │ │ ├── IBeatmaniaPsxBmDataStreamReader.cs │ │ │ ├── IBeatmaniaPsxChartEventStreamReader.cs │ │ │ └── IBeatmaniaPsxKeysoundStreamReader.cs │ ├── Games.Beatmania │ │ ├── BeatmaniaService.cs │ │ ├── Converters │ │ │ ├── BeatmaniaDspTranslator.cs │ │ │ └── IBeatmaniaDspTranslator.cs │ │ ├── IBeatmaniaService.cs │ │ └── Models │ │ │ └── BeatmaniaDifficultyConstants.cs │ ├── Games.Ddr.Ps2 │ │ ├── Converters │ │ │ ├── DdrPs2DatabaseDecoder.cs │ │ │ ├── DdrPs2FileDataBoundTableDecoder.cs │ │ │ ├── DdrPs2FileDataUnboundTableDecoder.cs │ │ │ ├── IDdrPs2DatabaseDecoder.cs │ │ │ ├── IDdrPs2FileDataBoundTableDecoder.cs │ │ │ └── IDdrPs2FileDataUnboundTableDecoder.cs │ │ └── Models │ │ │ ├── DdrPs2FileDataTableChunk.cs │ │ │ ├── DdrPs2FileDataTableEntry.cs │ │ │ └── DdrPs2MetadataTableEntry.cs │ ├── Games.Ddr.S573 │ │ ├── Converters │ │ │ ├── Ddr573DatabaseDecoder.cs │ │ │ ├── Ddr573DatabaseDecrypter.cs │ │ │ ├── Ddr573ImageDecoder.cs │ │ │ ├── Ddr573ImageDirectoryDecoder.cs │ │ │ ├── IDdr573DatabaseDecoder.cs │ │ │ ├── IDdr573DatabaseDecrypter.cs │ │ │ ├── IDdr573ImageDecoder.cs │ │ │ └── IDdr573ImageDirectoryDecoder.cs │ │ ├── Heuristics │ │ │ └── DdrFileDataBinCompressedTableHeuristic.cs │ │ ├── Models │ │ │ ├── Ddr573DirectoryEntry.cs │ │ │ ├── Ddr573File.cs │ │ │ └── Ddr573Image.cs │ │ └── Processors │ │ │ ├── Ddr573AudioNameFinder.cs │ │ │ ├── Ddr573ImageFileNameHasher.cs │ │ │ ├── IDdr573AudioNameFinder.cs │ │ │ └── IDdr573ImageFileNameHasher.cs │ ├── Games.Ddr │ │ ├── DdrSongInfo.cs │ │ ├── Models │ │ │ ├── DdrConstants.cs │ │ │ ├── DdrDatabaseEntry.cs │ │ │ ├── DdrMetadataDatabaseEntry.cs │ │ │ ├── MetadataDecoratorFileExtensions.cs │ │ │ └── MusicDbEntry.cs │ │ ├── Processors │ │ │ ├── DdrMetadata.zip │ │ │ ├── DdrMetadataDatabase.cs │ │ │ ├── DdrMetadataDecorator.cs │ │ │ ├── IDdrMetadataDatabase.cs │ │ │ └── IDdrMetadataDecorator.cs │ │ └── Streamers │ │ │ ├── Ddr573ImageStreamReader.cs │ │ │ ├── DdrPs2FileDataStepStreamReader.cs │ │ │ ├── DdrPs2FileDataTableChunkStreamReader.cs │ │ │ ├── DdrPs2MetadataTableStreamReader.cs │ │ │ ├── IDdr573ImageStreamReader.cs │ │ │ ├── IDdrPs2FileDataStepStreamReader.cs │ │ │ ├── IDdrPs2FileDataTableChunkStreamReader.cs │ │ │ ├── IDdrPs2MetadataTableStreamReader.cs │ │ │ ├── IMusicDbXmlStreamReader.cs │ │ │ └── MusicDbXmlStreamReader.cs │ ├── Games.Vtddd │ │ ├── Converters │ │ │ ├── IVtdddChartDecoder.cs │ │ │ ├── IVtdddStepDecoder.cs │ │ │ ├── VtdddChartDecoder.cs │ │ │ └── VtdddStepDecoder.cs │ │ ├── Models │ │ │ ├── VtdddDanceDb.cs │ │ │ ├── VtdddDanceDbSong.cs │ │ │ ├── VtdddDpoFile.cs │ │ │ └── VtdddStep.cs │ │ └── Streamers │ │ │ ├── IVtdddChartXmlStreamReader.cs │ │ │ ├── IVtdddDanceXmlStreamReader.cs │ │ │ ├── IVtdddDpoStreamReader.cs │ │ │ ├── VtdddChartXmlStreamReader.cs │ │ │ ├── VtdddDanceXmlStreamReader.cs │ │ │ └── VtdddDpoStreamReader.cs │ ├── Graphics.Dds │ │ ├── Converters │ │ │ ├── DdsBitmapDecoder.cs │ │ │ ├── DxtDecoder.cs │ │ │ ├── IDdsBitmapDecoder.cs │ │ │ ├── IDxtDecoder.cs │ │ │ ├── IRawBitmapDecoder.cs │ │ │ └── RawBitmapDecoder.cs │ │ ├── Models │ │ │ ├── DdsCaps1.cs │ │ │ ├── DdsFlags.cs │ │ │ ├── DdsImage.cs │ │ │ ├── DdsPixelFormat.cs │ │ │ └── DdsPixelFormatFlags.cs │ │ └── Streamers │ │ │ ├── DdsStreamReader.cs │ │ │ └── IDdsStreamReader.cs │ ├── Graphics.Tcb │ │ ├── Converters │ │ │ ├── ITcbImageDecoder.cs │ │ │ └── TcbImageDecoder.cs │ │ ├── Models │ │ │ └── TcbImage.cs │ │ └── Streamers │ │ │ ├── ITcbStreamReader.cs │ │ │ └── TcbStreamReader.cs │ ├── Graphics.Tim │ │ ├── Converters │ │ │ ├── ITimBitmapDecoder.cs │ │ │ ├── ITimColorDecoder.cs │ │ │ ├── ITimDataDecoder.cs │ │ │ ├── ITimDecoder.cs │ │ │ ├── TimBitmapDecoder.cs │ │ │ ├── TimColorDecoder.cs │ │ │ ├── TimDataDecoder.cs │ │ │ └── TimDecoder.cs │ │ ├── Models │ │ │ ├── TimImage.cs │ │ │ └── TimPalette.cs │ │ ├── Streamers │ │ │ ├── ITimStreamReader.cs │ │ │ └── TimStreamReader.cs │ │ └── TimHeuristic.cs │ ├── Graphics │ │ ├── Converters │ │ │ ├── GraphicDsp.cs │ │ │ └── IGraphicDsp.cs │ │ ├── Models │ │ │ ├── Bitmap.cs │ │ │ └── PaletteBitmap.cs │ │ └── Streamers │ │ │ ├── IBitmapStreamReader.cs │ │ │ └── IBitmapStreamWriter.cs │ ├── Heuristics │ │ ├── BinaryHeuristicResult.cs │ │ ├── Context.cs │ │ ├── ContextAttribute.cs │ │ ├── HeuristicBlockResult.cs │ │ ├── HeuristicBlockStreamReader.cs │ │ ├── HeuristicResult.cs │ │ ├── HeuristicTester.cs │ │ ├── IHeuristicBlockStreamReader.cs │ │ ├── IHeuristicReader.cs │ │ ├── IHeuristicTester.cs │ │ ├── IReadableHeuristic.cs │ │ ├── MemoryHeuristicReader.cs │ │ └── StreamHeuristicReader.cs │ ├── IRhythmCodexService.cs │ ├── Infrastructure.Tasks │ │ ├── ITaskContext.cs │ │ ├── ITaskProcess.cs │ │ ├── ITaskSpec.cs │ │ ├── ITaskSpecFactory.cs │ │ ├── TaskProcess.cs │ │ ├── TaskProgress.cs │ │ ├── TaskSpec.cs │ │ └── TaskSpecFactory.cs │ ├── Infrastructure │ │ ├── Alphabet.cs │ │ ├── ArrayUtilities.cs │ │ ├── Bcd.cs │ │ ├── BigRational.cs │ │ ├── BigRationalParser.cs │ │ ├── BitReader.cs │ │ ├── Bitter.cs │ │ ├── CachedStream.cs │ │ ├── EmbeddedResources.cs │ │ ├── Encodings.cs │ │ ├── FileAccessor.cs │ │ ├── FileAccessorFactory.cs │ │ ├── HeuristicExtensions.cs │ │ ├── IConsole.cs │ │ ├── IFileAccessor.cs │ │ ├── IFileAccessorFactory.cs │ │ ├── IHeuristic.cs │ │ ├── ILogger.cs │ │ ├── ILoggerConfigurationSource.cs │ │ ├── INumberFormatter.cs │ │ ├── IQuantizer.cs │ │ ├── IRandomizer.cs │ │ ├── Json.cs │ │ ├── LoggerConfigurationSource.cs │ │ ├── LoggerVerbosityLevel.cs │ │ ├── MemoryCollectionExtensions.cs │ │ ├── MemoryConvert.cs │ │ ├── MemoryReader.cs │ │ ├── ModelAttribute.cs │ │ ├── Models │ │ │ └── ExtensionMatchedFile.cs │ │ ├── NumberFormatter.cs │ │ ├── Paths.cs │ │ ├── Quantizer.cs │ │ ├── Randomizer.cs │ │ ├── ReadOnlyMemoryStream.cs │ │ ├── Reducer.cs │ │ ├── RhythmCodexException.cs │ │ ├── SnapshotStream.cs │ │ ├── StreamExtensions.cs │ │ ├── StreamWrapper.cs │ │ ├── TextWriterLogger.cs │ │ └── XElementExtensions.cs │ ├── IoC │ │ ├── NotServiceAttribute.cs │ │ ├── ServiceAttribute.cs │ │ ├── ServiceMapping.cs │ │ └── ServiceTypes.cs │ ├── Metadatas.Sif │ │ ├── Converters │ │ │ ├── BinarySifDecoder.cs │ │ │ ├── IBinarySifDecoder.cs │ │ │ ├── ISifSmMetadataChanger.cs │ │ │ ├── ITextSifDecoder.cs │ │ │ ├── SifSmMetadataChanger.cs │ │ │ └── TextSifDecoder.cs │ │ ├── Models │ │ │ ├── SifInfo.cs │ │ │ └── SifKeys.cs │ │ └── Streamers │ │ │ ├── ISifStreamReader.cs │ │ │ └── SifStreamReader.cs │ ├── Metadatas │ │ └── Models │ │ │ ├── FlagData.cs │ │ │ ├── IMetadata.cs │ │ │ ├── IMetadataAggregator.cs │ │ │ ├── Metadata.cs │ │ │ ├── MetadataAggregator.cs │ │ │ ├── NumericData.cs │ │ │ └── StringData.cs │ ├── RhythmCodex.csproj │ ├── RhythmCodexServiceBase.cs │ ├── Sounds.Filter │ │ └── Providers │ │ │ ├── FilterProvider.cs │ │ │ ├── FilterType.cs │ │ │ ├── IFilter.cs │ │ │ ├── IFilterContext.cs │ │ │ └── IFilterProvider.cs │ ├── Sounds.ImaAdpcm │ │ ├── Converters │ │ │ ├── IImaAdpcmDecoder.cs │ │ │ └── ImaAdpcmDecoder.cs │ │ └── Models │ │ │ ├── ImaAdpcmChunk.cs │ │ │ └── ImaAdpcmConstants.cs │ ├── Sounds.Mixer │ │ ├── Converters │ │ │ ├── DefaultStereoMixer.cs │ │ │ ├── IDefaultStereoMixer.cs │ │ │ ├── IStereoMixer.cs │ │ │ └── StereoMixer.cs │ │ └── Models │ │ │ ├── MixAmount.cs │ │ │ ├── MixBalance.cs │ │ │ └── MixState.cs │ ├── Sounds.Psf │ │ ├── Models │ │ │ └── PsfChunk.cs │ │ └── Streamers │ │ │ ├── IPsfStreamReader.cs │ │ │ └── PsfStreamReader.cs │ ├── Sounds.Resampler │ │ ├── Providers │ │ │ ├── IResampler.cs │ │ │ ├── IResamplerProvider.cs │ │ │ └── ResamplerProvider.cs │ │ └── Resamplers │ │ │ ├── FilteredSampleAndHoldResampler.cs │ │ │ └── SampleAndHoldResampler.cs │ ├── Sounds.Riff │ │ ├── Converters │ │ │ ├── IRiffFormatDecoder.cs │ │ │ ├── IRiffFormatEncoder.cs │ │ │ ├── IRiffMicrosoftAdpcmSoundEncoder.cs │ │ │ ├── IRiffPcm16SoundEncoder.cs │ │ │ ├── RiffFormatDecoder.cs │ │ │ ├── RiffFormatEncoder.cs │ │ │ ├── RiffMicrosoftAdpcmSoundEncoder.cs │ │ │ └── RiffPcm16SoundEncoder.cs │ │ ├── Models │ │ │ ├── RiffChunk.cs │ │ │ ├── RiffContainer.cs │ │ │ └── RiffFormat.cs │ │ ├── Processing │ │ │ ├── ISoundConsolidator.cs │ │ │ └── SoundConsolidator.cs │ │ └── Streamers │ │ │ ├── IRiffChunkStreamReader.cs │ │ │ ├── IRiffStreamReader.cs │ │ │ ├── IRiffStreamWriter.cs │ │ │ ├── RiffChunkStreamReader.cs │ │ │ ├── RiffStreamReader.cs │ │ │ └── RiffStreamWriter.cs │ ├── Sounds.Vag │ │ ├── Converters │ │ │ ├── ISvagDecoder.cs │ │ │ ├── IVagDecoder.cs │ │ │ ├── IVagDecrypter.cs │ │ │ ├── IVagEncrypter.cs │ │ │ ├── IVagSplitter.cs │ │ │ ├── SvagDecoder.cs │ │ │ ├── VagDecoder.cs │ │ │ ├── VagDecrypter.cs │ │ │ ├── VagEncrypter.cs │ │ │ └── VagSplitter.cs │ │ ├── Heuristics │ │ │ ├── SvagHeuristic.cs │ │ │ └── VagHeuristicResult.cs │ │ ├── Models │ │ │ ├── SvagContainer.cs │ │ │ ├── VagChunk.cs │ │ │ ├── VagCoefficients.cs │ │ │ ├── VagConfig.cs │ │ │ ├── VagState.cs │ │ │ └── Xa2Container.cs │ │ └── Streamers │ │ │ ├── ISvagStreamReader.cs │ │ │ ├── IVagStreamReader.cs │ │ │ ├── IXa2StreamReader.cs │ │ │ ├── SvagStreamReader.cs │ │ │ ├── VagStreamReader.cs │ │ │ └── Xa2StreamReader.cs │ ├── Sounds.Wav │ │ ├── Converters │ │ │ ├── ChartRenderer.cs │ │ │ ├── IChartRenderer.cs │ │ │ ├── IMicrosoftAdpcmDecoder.cs │ │ │ ├── IMicrosoftAdpcmEncoder.cs │ │ │ ├── IPcmDecoder.cs │ │ │ ├── IWavDecoder.cs │ │ │ ├── IWaveFmtDecoder.cs │ │ │ ├── MicrosoftAdpcmDecoder.cs │ │ │ ├── MicrosoftAdpcmEncoder.cs │ │ │ ├── PcmDecoder.cs │ │ │ ├── WavDecoder.cs │ │ │ └── WaveFmtDecoder.cs │ │ └── Models │ │ │ ├── ChartRendererOptions.cs │ │ │ ├── IWaveFormat.cs │ │ │ ├── ImaAdpcmFormat.cs │ │ │ ├── MicrosoftAdpcmConstants.cs │ │ │ ├── MicrosoftAdpcmFormat.cs │ │ │ └── WaveFmtChunk.cs │ ├── Sounds.Xa │ │ ├── Converters │ │ │ ├── IXaDecoder.cs │ │ │ ├── IXaFrameSplitter.cs │ │ │ ├── XaDecoder.cs │ │ │ └── XaFrameSplitter.cs │ │ ├── Heuristics │ │ │ ├── IXaIsoStreamFinder.cs │ │ │ └── XaIsoStreamFinder.cs │ │ ├── Models │ │ │ ├── XaChunk.cs │ │ │ └── XaState.cs │ │ └── Streamers │ │ │ ├── IXaStreamReader.cs │ │ │ └── XaStreamReader.cs │ ├── Sounds.Xact │ │ ├── Converters │ │ │ ├── IXwbDecoder.cs │ │ │ └── XwbDecoder.cs │ │ ├── Heuristics │ │ │ └── XwbHeuristic.cs │ │ ├── Model │ │ │ ├── XsbCue.cs │ │ │ ├── XsbFile.cs │ │ │ ├── XsbHeader.cs │ │ │ ├── XsbSound.cs │ │ │ ├── XsbSoundClip.cs │ │ │ ├── XsbSoundClipEvent.cs │ │ │ ├── XsbSoundDsp.cs │ │ │ ├── XsbSoundRpc.cs │ │ │ ├── XwbConstants.cs │ │ │ ├── XwbData.cs │ │ │ ├── XwbEntry.cs │ │ │ ├── XwbHeader.cs │ │ │ ├── XwbMiniWaveFormat.cs │ │ │ ├── XwbRegion.cs │ │ │ ├── XwbSampleRegion.cs │ │ │ ├── XwbSegIdx.cs │ │ │ └── XwbSound.cs │ │ ├── Processors │ │ │ ├── Fcs16Calculator.cs │ │ │ └── IFcs16Calculator.cs │ │ ├── Streamers │ │ │ ├── IXsbCueNameTableStreamReader.cs │ │ │ ├── IXsbCueStreamReader.cs │ │ │ ├── IXsbCueStreamWriter.cs │ │ │ ├── IXsbHeaderStreamReader.cs │ │ │ ├── IXsbHeaderStreamWriter.cs │ │ │ ├── IXsbSoundClipStreamReader.cs │ │ │ ├── IXsbSoundDspStreamReader.cs │ │ │ ├── IXsbSoundRpcStreamReader.cs │ │ │ ├── IXsbSoundStreamReader.cs │ │ │ ├── IXsbSoundStreamWriter.cs │ │ │ ├── IXsbStreamReader.cs │ │ │ ├── IXsbStreamWriter.cs │ │ │ ├── IXwbDataStreamReader.cs │ │ │ ├── IXwbDataStreamWriter.cs │ │ │ ├── IXwbEntryStreamReader.cs │ │ │ ├── IXwbEntryStreamWriter.cs │ │ │ ├── IXwbHeaderStreamReader.cs │ │ │ ├── IXwbHeaderStreamWriter.cs │ │ │ ├── IXwbMiniWaveFormatStreamReader.cs │ │ │ ├── IXwbRegionStreamReader.cs │ │ │ ├── IXwbSampleRegionStreamReader.cs │ │ │ ├── IXwbStreamReader.cs │ │ │ ├── IXwbStreamWriter.cs │ │ │ ├── XsbCueNameTableStreamReader.cs │ │ │ ├── XsbCueStreamReader.cs │ │ │ ├── XsbCueStreamWriter.cs │ │ │ ├── XsbHeaderStreamReader.cs │ │ │ ├── XsbHeaderStreamWriter.cs │ │ │ ├── XsbSoundClipStreamReader.cs │ │ │ ├── XsbSoundDspStreamReader.cs │ │ │ ├── XsbSoundRpcStreamReader.cs │ │ │ ├── XsbSoundStreamReader.cs │ │ │ ├── XsbSoundStreamWriter.cs │ │ │ ├── XsbStreamReader.cs │ │ │ ├── XsbStreamWriter.cs │ │ │ ├── XwbDataStreamReader.cs │ │ │ ├── XwbDataStreamWriter.cs │ │ │ ├── XwbEntryStreamReader.cs │ │ │ ├── XwbEntryStreamWriter.cs │ │ │ ├── XwbHeaderStreamReader.cs │ │ │ ├── XwbHeaderStreamWriter.cs │ │ │ ├── XwbMiniWaveFormatStreamReader.cs │ │ │ ├── XwbRegionStreamReader.cs │ │ │ ├── XwbSampleRegionStreamReader.cs │ │ │ ├── XwbStreamReader.cs │ │ │ └── XwbStreamWriter.cs │ │ └── XactConstants.cs │ ├── Sounds │ │ ├── Converters │ │ │ ├── AudioDsp.cs │ │ │ ├── AudioSimd.cs │ │ │ ├── Decibels.cs │ │ │ └── IAudioDsp.cs │ │ ├── Models │ │ │ ├── AudioEndian.cs │ │ │ ├── AudioSign.cs │ │ │ ├── Sample.cs │ │ │ ├── SampleBuilder.cs │ │ │ ├── Sound.cs │ │ │ └── SoundBuilder.cs │ │ └── Streamers │ │ │ ├── ISoundStreamReader.cs │ │ │ └── ISoundStreamWriter.cs │ ├── Streamers │ │ ├── ByteSwappedReadStream.cs │ │ ├── ITextStreamReader.cs │ │ ├── ITextStreamWriter.cs │ │ ├── TextStreamReader.cs │ │ └── TextStreamWriter.cs │ ├── Utils.Cursors │ │ ├── ArrayExtensions.cs │ │ ├── ByteMemoryExtensions.cs │ │ ├── ByteSpanExtensions.cs │ │ ├── LinqExtensions.cs │ │ └── StreamExtensions.cs │ └── Videos.Mjpeg │ │ └── Heuristics │ │ └── MjpegHeuristic.cs ├── RhythmCodex.Plugin.BouncyCastle │ ├── BlowfishDecrypter.cs │ └── RhythmCodex.Plugin.BouncyCastle.csproj ├── RhythmCodex.Plugin.CSCore │ ├── Lib │ │ └── DSP │ │ │ ├── BandpassFilter.cs │ │ │ ├── BiQuad.cs │ │ │ ├── HighShelfFilter.cs │ │ │ ├── HighpassFilter.cs │ │ │ ├── LowShelfFilter.cs │ │ │ ├── LowpassFilter.cs │ │ │ ├── NotchFilter.cs │ │ │ └── PeakFilter.cs │ ├── LowPassAudioFilter.cs │ └── RhythmCodex.Plugin.CSCore.csproj ├── RhythmCodex.Plugin.DependencyInjection │ ├── RhythmCodex.Plugin.DependencyInjection.csproj │ └── RhythmCodexService.cs ├── RhythmCodex.Plugin.Sdl3 │ ├── Graphics │ │ ├── BitmapStreamReader.cs │ │ └── BitmapStreamWriter.cs │ ├── Infrastructure │ │ ├── IoStreamWrapper.cs │ │ └── UserDataStore.cs │ ├── Init.cs │ ├── RhythmCodex.Plugin.Sdl3.csproj │ ├── SdlException.cs │ └── Sounds │ │ ├── SoundStreamReader.cs │ │ └── SoundStreamWriter.cs ├── RhythmCodex.Plugin.SevenZip │ ├── LzmaDecoder.cs │ └── RhythmCodex.Plugin.SevenZip.csproj ├── RhythmCodex.Plugin.SharpZipLib │ ├── Bzip2StreamFactory.cs │ ├── LzwStreamFactory.cs │ └── RhythmCodex.Plugin.SharpZipLib.csproj ├── RhythmCodex.Test │ ├── BaseIntegrationFixture.cs │ ├── BaseTestFixture.cs │ ├── BaseUnitTestFixture.cs │ ├── CharacterSets.cs │ ├── DoNotCoverAttribute.cs │ ├── IResolver.cs │ ├── Infrastructure │ │ └── TestConsole.cs │ ├── RhythmCodex.Test.csproj │ ├── TestAutofacModule.cs │ └── TestHelper.cs ├── RhythmCodex.sln ├── StreamCursors │ └── README.md ├── XwbExtract │ ├── App.cs │ ├── Program.cs │ └── XwbExtract.csproj └── global.json ├── publish.bat └── publish.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/.gitignore -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/DESIGN.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/README.md -------------------------------------------------------------------------------- /Source/ClientCommon/ArgParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/ArgParser.cs -------------------------------------------------------------------------------- /Source/ClientCommon/ArgResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/ArgResolver.cs -------------------------------------------------------------------------------- /Source/ClientCommon/Args.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/Args.cs -------------------------------------------------------------------------------- /Source/ClientCommon/Bootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/Bootstrap.cs -------------------------------------------------------------------------------- /Source/ClientCommon/ClientCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/ClientCommon.csproj -------------------------------------------------------------------------------- /Source/ClientCommon/Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/Console.cs -------------------------------------------------------------------------------- /Source/ClientCommon/FileSystemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/FileSystemExtensions.cs -------------------------------------------------------------------------------- /Source/ClientCommon/IApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/IApp.cs -------------------------------------------------------------------------------- /Source/ClientCommon/IArgParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/IArgParser.cs -------------------------------------------------------------------------------- /Source/ClientCommon/IArgResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/IArgResolver.cs -------------------------------------------------------------------------------- /Source/ClientCommon/IFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/IFileSystem.cs -------------------------------------------------------------------------------- /Source/ClientCommon/Iteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/Iteration.cs -------------------------------------------------------------------------------- /Source/ClientCommon/PhysicalFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/ClientCommon/PhysicalFileSystem.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli.Test/AppIntegrationFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli.Test/AppIntegrationFixture.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli.Test/FakeFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli.Test/FakeFileSystem.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli.Test/Helpers/ArgParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli.Test/Helpers/ArgParserTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli.Test/Helpers/PhysicalFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli.Test/Helpers/PhysicalFileSystemTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli.Test/Modules/SsqCliModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli.Test/Modules/SsqCliModuleTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli.Test/RhythmCodex.Cli.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli.Test/RhythmCodex.Cli.Test.csproj -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/App.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/AppAutofacModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/AppAutofacModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/AppInfrastructureAutofacModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/AppInfrastructureAutofacModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/AppProgressTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/AppProgressTracker.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Boot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Boot.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Command.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/CommandParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/CommandParameter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Helpers/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Helpers/StreamExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/IApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/IApp.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/IAppProgressTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/IAppProgressTracker.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/ICliModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/ICliModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/ICommand.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/ICommandParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/ICommandParameter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Modules/ArcModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Modules/ArcModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Modules/BeatmaniaModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Modules/BeatmaniaModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Modules/BemaniLzModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Modules/BemaniLzModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Modules/BmsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Modules/BmsModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Modules/DdrModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Modules/DdrModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Modules/GraphicsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Modules/GraphicsModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Modules/SsqCliModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Modules/SsqCliModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Modules/Step1CliModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Modules/Step1CliModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Modules/Step2CliModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Modules/Step2CliModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Modules/XboxModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Modules/XboxModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/ArcTaskBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/ArcTaskBuilder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/BeatmaniaTaskBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/BeatmaniaTaskBuilder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/BmsTaskBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/BmsTaskBuilder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/CompressionTaskBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/CompressionTaskBuilder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/DdrTaskBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/DdrTaskBuilder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/GraphicsTaskBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/GraphicsTaskBuilder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/Infrastructure/ITask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/Infrastructure/ITask.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/Infrastructure/ITaskBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/Infrastructure/ITaskBuilder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/Infrastructure/ITaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/Infrastructure/ITaskFactory.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/Infrastructure/InputFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/Infrastructure/InputFile.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/Infrastructure/TaskBuilderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/Infrastructure/TaskBuilderBase.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/Infrastructure/TaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/Infrastructure/TaskFactory.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/Infrastructure/TaskFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/Infrastructure/TaskFile.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/Infrastructure/TaskFileFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/Infrastructure/TaskFileFactory.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/Orchestration/XboxTaskBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/Orchestration/XboxTaskBuilder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Cli/RhythmCodex.Cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Cli/RhythmCodex.Cli.csproj -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Arc/ddra-arc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Arc/ddra-arc.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Beatmania/2dx9th.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Beatmania/2dx9th.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Beatmania/chart9th.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Beatmania/chart9th.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/BeatmaniaPs2/bm2dxps2bgm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/BeatmaniaPs2/bm2dxps2bgm.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/BeatmaniaPs2/bm2dxps2encchart.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/BeatmaniaPs2/bm2dxps2encchart.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/BeatmaniaPs2/bm2dxps2key.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/BeatmaniaPs2/bm2dxps2key.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/BeatmaniaPs2/bm2dxps2newbgm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/BeatmaniaPs2/bm2dxps2newbgm.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/BeatmaniaPs2/bm2dxps2newkey.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/BeatmaniaPs2/bm2dxps2newkey.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/BeatmaniaPsx/chart.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/BeatmaniaPsx/chart.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/BeatmaniaPsx/keysounds.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/BeatmaniaPsx/keysounds.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Bms/positive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Bms/positive.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Bms/random.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Bms/random.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Compression/BemaniLz.TimTest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Compression/BemaniLz.TimTest.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Compression/lzma.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Compression/lzma.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Ddr/mdb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Ddr/mdb.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Ddr/mp3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Ddr/mp3.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Ddr/sbm1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Ddr/sbm1.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Ddr/sbm2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Ddr/sbm2.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Dds/dxt1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Dds/dxt1.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Dds/dxt5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Dds/dxt5.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Dds/uncompressed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Dds/uncompressed.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Djmain/bm1st.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Djmain/bm1st.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Djmain/bm7th.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Djmain/bm7th.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Djmain/bmcm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Djmain/bmcm.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Djmain/bmcm2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Djmain/bmcm2.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Djmain/bmfinal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Djmain/bmfinal.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Djmain/chart.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Djmain/chart.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Djmain/popn1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Djmain/popn1.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Flac/example.flac.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Flac/example.flac.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/ImaAdpcm/RawXboxAdpcm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/ImaAdpcm/RawXboxAdpcm.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Iso/test-iso.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Iso/test-iso.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Mp3/example.mp3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Mp3/example.mp3.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Ogg/example.ogg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Ogg/example.ogg.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Png/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Png/example.png -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Psf/ff9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Psf/ff9.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/RhythmCodex.Test.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/RhythmCodex.Test.Data.csproj -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Ssq/freeze.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Ssq/freeze.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Ssq/offset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Ssq/offset.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Ssq/shock.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Ssq/shock.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Ssq/solo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Ssq/solo.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Step1/2nd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Step1/2nd.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Step1/picky.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Step1/picky.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Step1/solo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Step1/solo.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Step2/couple.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Step2/couple.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Step2/double.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Step2/double.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Step2/single.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Step2/single.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/TestDataBeacon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/TestDataBeacon.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Tim/extreme1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Tim/extreme1.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Twinkle/8th.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Twinkle/8th.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Vag/svag.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Vag/svag.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Vag/xa2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Vag/xa2.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Wav/alaw.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Wav/alaw.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Wav/double.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Wav/double.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Wav/imaadpcm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Wav/imaadpcm.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Wav/mp3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Wav/mp3.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Wav/msadpcm.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Wav/msadpcm.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Wav/pcm16.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Wav/pcm16.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Wav/pcm24.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Wav/pcm24.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Wav/pcm32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Wav/pcm32.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Wav/pcm8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Wav/pcm8.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Wav/single.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Wav/single.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Wav/ulaw.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Wav/ulaw.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Xact/xsb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Xact/xsb.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Xact/xwb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Xact/xwb.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test.Data/Xbox/kas.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test.Data/Xbox/kas.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Charts.Ssq/Converters/SsqDecoderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Charts.Ssq/Converters/SsqDecoderTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Charts.Ssq/Streamers/SsqStreamerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Charts.Ssq/Streamers/SsqStreamerTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Charts/QuantizerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Charts/QuantizerTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Extensions/EnumerableExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Extensions/EnumerableExtensionsTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Infrastructure.Tasks/TaskSpecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Infrastructure.Tasks/TaskSpecTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Infrastructure/BigRationalTests.cs: -------------------------------------------------------------------------------- 1 | namespace RhythmCodex.Infrastructure; 2 | 3 | public class BigRationalTests; -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Infrastructure/BitReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Infrastructure/BitReaderTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Plugin.Sdl3/BitmapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Plugin.Sdl3/BitmapTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/RhythmCodex.Lib.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/RhythmCodex.Lib.Test.csproj -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Sounds/AudioDspTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Sounds/AudioDspTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Streamers/ByteSwappedReadStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Streamers/ByteSwappedReadStreamTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Tools.OneShots/DdrOneShots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Tools.OneShots/DdrOneShots.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Tools.OneShots/DjmainOneShots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Tools.OneShots/DjmainOneShots.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Tools.OneShots/SmOneShots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Tools.OneShots/SmOneShots.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Tools.OneShots/TwinkleOneShots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Tools.OneShots/TwinkleOneShots.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Utils.Cursors/ByteMemoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Utils.Cursors/ByteMemoryTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Utils.Cursors/ByteSpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Utils.Cursors/ByteSpanTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib.Test/Utils.Cursors/StreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib.Test/Utils.Cursors/StreamTests.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainAudioDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainAudioDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainChartDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainChartDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainMixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainMixer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainSampleDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainSampleDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainSoundDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Converters/DjmainSoundDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Converters/IDjmainAudioDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Converters/IDjmainAudioDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Converters/IDjmainChartDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Converters/IDjmainChartDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Converters/IDjmainDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Converters/IDjmainDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Converters/IDjmainSampleDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Converters/IDjmainSampleDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Converters/IDjmainSoundDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Converters/IDjmainSoundDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/DjmainConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/DjmainConstants.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Heuristics/DjmainOffsetProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Heuristics/DjmainOffsetProvider.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainArchive.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainBeatmaniaColumnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainBeatmaniaColumnType.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainChartEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainChartEvent.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainChartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainChartType.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainChunkFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainChunkFormat.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainDecodeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainDecodeOptions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainEventType.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainHddDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainHddDescription.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainPopnColumnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainPopnColumnType.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainSample.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainSampleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainSampleInfo.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainSampleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Djmain/Model/DjmainSampleSet.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Psx/Heuristics/PsxExeHeuristic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Psx/Heuristics/PsxExeHeuristic.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.S573/Models/Digital573Audio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.S573/Models/Digital573Audio.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.S573/Models/Digital573AudioKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.S573/Models/Digital573AudioKey.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Twinkle/Model/TwinkleArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Twinkle/Model/TwinkleArchive.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Twinkle/Model/TwinkleBeatmaniaChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Twinkle/Model/TwinkleBeatmaniaChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Twinkle/Model/TwinkleConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Twinkle/Model/TwinkleConstants.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Twinkle/Model/TwinkleDecodeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Twinkle/Model/TwinkleDecodeOptions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Converters/IXboxIsoInfoDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Converters/IXboxIsoInfoDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Converters/XboxIsoInfoDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Converters/XboxIsoInfoDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxHbnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxHbnDefinition.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxHbnEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxHbnEntry.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxIsoFileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxIsoFileAttributes.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxIsoFileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxIsoFileEntry.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxIsoInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxIsoInfo.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxKasDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxKasDefinition.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxKasEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxKasEntry.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxSngEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Model/XboxSngEntry.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Streamers/IXboxHbnStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Streamers/IXboxHbnStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Streamers/IXboxIsoStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Streamers/IXboxIsoStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Streamers/IXboxKasStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Streamers/IXboxKasStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Streamers/IXboxSngStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Streamers/IXboxSngStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Streamers/XboxHbnStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Streamers/XboxHbnStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Streamers/XboxIsoStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Streamers/XboxIsoStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Streamers/XboxKasStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Streamers/XboxKasStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Archs.Xbox/Streamers/XboxSngStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Archs.Xbox/Streamers/XboxSngStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/AssemblyProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/AssemblyProperties.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsChartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsChartType.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsEncoderOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsEncoderOptions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsNoteCommandEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsNoteCommandEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsRandomResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsRandomResolver.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsSoundLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/BmsSoundLoader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/IBmsDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/IBmsDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/IBmsEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/IBmsEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/IBmsNoteCommandEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/IBmsNoteCommandEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/IBmsRandomResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/IBmsRandomResolver.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Converters/IBmsSoundLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Converters/IBmsSoundLoader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Model/BmsChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Model/BmsChart.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Model/BmsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Model/BmsCommand.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Model/BmsEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Model/BmsEvent.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Model/BmsResolverScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Model/BmsResolverScope.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Streamers/BmsStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Streamers/BmsStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Streamers/BmsStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Streamers/BmsStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Streamers/IBmsStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Streamers/IBmsStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Bms/Streamers/IBmsStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Bms/Streamers/IBmsStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/ChartTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/ChartTag.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/GrooveRadarEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/GrooveRadarEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/IGrooveRadarEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/IGrooveRadarEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/INoteDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/INoteDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/INoteEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/INoteEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/ISmDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/ISmDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/ISmEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/ISmEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/ISmMetadataChanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/ISmMetadataChanger.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/NoteDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/NoteDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/NoteEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/NoteEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/SmDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/SmDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/SmEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/SmEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Converters/SmMetadataChanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Converters/SmMetadataChanger.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Model/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Model/Command.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Model/INote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Model/INote.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Model/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Model/Note.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Model/NoteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Model/NoteType.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Model/SmGameTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Model/SmGameTypes.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Model/SmNotesDifficulties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Model/SmNotesDifficulties.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Model/TimedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Model/TimedEvent.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/NotesCommandTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/NotesCommandTag.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/StepmaniaConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/StepmaniaConstants.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Streamers/ISmStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Streamers/ISmStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Streamers/ISmStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Streamers/ISmStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Streamers/SmStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Streamers/SmStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Sm/Streamers/SmStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Sm/Streamers/SmStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ChartInfoDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ChartInfoDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ChartInfoEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ChartInfoEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/IChartInfoDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/IChartInfoDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/IChartInfoEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/IChartInfoEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqChunkFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqChunkFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqEventDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqEventDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqEventEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqEventEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqIdSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqIdSelector.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqInfoChunkDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqInfoChunkDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqInfoChunkEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ISsqInfoChunkEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/IStepChunkDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/IStepChunkDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/IStepChunkEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/IStepChunkEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/IStepEventDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/IStepEventDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/IStepEventEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/IStepEventEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/IStepPanelSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/IStepPanelSplitter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITimingChunkDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITimingChunkDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITimingChunkEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITimingChunkEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITimingEventDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITimingEventDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITimingEventEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITimingEventEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITriggerChunkDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITriggerChunkDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITriggerChunkEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITriggerChunkEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITriggerEventDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITriggerEventDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITriggerEventEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/ITriggerEventEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqChunkFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqChunkFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqEventDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqEventDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqIdSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqIdSelector.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqInfoChunkDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/SsqInfoChunkDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/StepChunkDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/StepChunkDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/StepChunkEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/StepChunkEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/StepEventDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/StepEventDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/StepEventEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/StepEventEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/StepPanelSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/StepPanelSplitter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/TimingChunkDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/TimingChunkDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/TimingChunkEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/TimingChunkEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/TimingEventDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/TimingEventDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/TimingEventEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/TimingEventEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/TriggerChunkDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/TriggerChunkDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/TriggerChunkEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/TriggerChunkEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/TriggerEventDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/TriggerEventDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Converters/TriggerEventEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Converters/TriggerEventEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Mappers/Ddr1Player3PanelMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Mappers/Ddr1Player3PanelMapper.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Mappers/Ddr1Player4PanelMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Mappers/Ddr1Player4PanelMapper.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Mappers/Ddr1Player6PanelMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Mappers/Ddr1Player6PanelMapper.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Mappers/Ddr1Player8PanelMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Mappers/Ddr1Player8PanelMapper.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Mappers/Ddr2Player4PanelMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Mappers/Ddr2Player4PanelMapper.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Mappers/DdrPanelMapperBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Mappers/DdrPanelMapperBase.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Mappers/IPanelMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Mappers/IPanelMapper.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Mappers/IPanelMapperSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Mappers/IPanelMapperSelector.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Mappers/PanelMapperSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Mappers/PanelMapperSelector.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Model/ChartInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Model/ChartInfo.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Model/PanelMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Model/PanelMapping.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Model/SsqChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Model/SsqChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Model/SsqInfoChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Model/SsqInfoChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Model/Step.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Model/Step.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Model/StepChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Model/StepChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Model/Timing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Model/Timing.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Model/TimingChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Model/TimingChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Model/Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Model/Trigger.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/SsqConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/SsqConstants.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/SsqHeuristic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/SsqHeuristic.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Streamers/ChunkStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Streamers/ChunkStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Streamers/ChunkStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Streamers/ChunkStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Streamers/IChunkStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Streamers/IChunkStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Streamers/IChunkStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Streamers/IChunkStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Streamers/ISsqStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Streamers/ISsqStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Streamers/ISsqStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Streamers/ISsqStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Streamers/SsqStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Streamers/SsqStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Ssq/Streamers/SsqStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Ssq/Streamers/SsqStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Statistics/EventCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Statistics/EventCounter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Statistics/IEventCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Statistics/IEventCounter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Statistics/IUsedSamplesCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Statistics/IUsedSamplesCounter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Statistics/UsedSamplesCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Statistics/UsedSamplesCounter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step1/Converters/IStep1Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step1/Converters/IStep1Decoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step1/Converters/Step1Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step1/Converters/Step1Decoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step1/Heuristics/Step1Heuristic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step1/Heuristics/Step1Heuristic.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step1/Models/Step1Chunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step1/Models/Step1Chunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step1/Streamers/IStep1StreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step1/Streamers/IStep1StreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step1/Streamers/Step1StreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step1/Streamers/Step1StreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step2/Converters/IStep2Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step2/Converters/IStep2Decoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step2/Converters/Step2Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step2/Converters/Step2Decoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step2/Mappers/IStep2EventMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step2/Mappers/IStep2EventMapper.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step2/Mappers/Step2EventMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step2/Mappers/Step2EventMapper.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step2/Models/Step2Chunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step2/Models/Step2Chunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step2/Models/Step2Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step2/Models/Step2Metadata.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step2/Models/Step2Step.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step2/Models/Step2Step.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step2/Streamers/IStep2StreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step2/Streamers/IStep2StreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts.Step2/Streamers/Step2StreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts.Step2/Streamers/Step2StreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts/Filters/ChartEventFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts/Filters/ChartEventFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts/Filters/IChartEventFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts/Filters/IChartEventFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts/Models/Chart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts/Models/Chart.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts/Models/ChartSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts/Models/ChartSet.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Charts/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Charts/Models/Event.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Compressions.Lzma/Converters/ILzmaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Compressions.Lzma/Converters/ILzmaDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Compressions/Models/Huffman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Compressions/Models/Huffman.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Compressions/Models/HuffmanNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Compressions/Models/HuffmanNode.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Extensions/BinaryReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Extensions/BinaryReaderExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Extensions/BinaryWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Extensions/BinaryWriterExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Extensions/ByteArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Extensions/ByteArrayExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Extensions/ByteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Extensions/ByteExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Extensions/ChartExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Extensions/ChartExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Extensions/ObjectExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/ArcService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/ArcService.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Converters/ArcFileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Converters/ArcFileConverter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Converters/IArcFileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Converters/IArcFileConverter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/IArcService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/IArcService.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Model/ArcEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Model/ArcEntry.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Model/ArcFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Model/ArcFile.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Model/ArcHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Model/ArcHeader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Processors/ArcLzDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Processors/ArcLzDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Processors/ArcLzEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Processors/ArcLzEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Processors/IArcLzDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Processors/IArcLzDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Processors/IArcLzEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Processors/IArcLzEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Streamers/ArcStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Streamers/ArcStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Streamers/ArcStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Streamers/ArcStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Streamers/IArcStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Streamers/IArcStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Arc/Streamers/IArcStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Arc/Streamers/IArcStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Cd/Model/CdFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Cd/Model/CdFile.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Cd/Model/CdSector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Cd/Model/CdSector.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Cd/Model/CueInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Cd/Model/CueInfo.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Cd/Model/CueTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Cd/Model/CueTrack.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Cd/Model/ICdFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Cd/Model/ICdFile.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Cd/Model/ICdSector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Cd/Model/ICdSector.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Cd/Streamers/CdSectorStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Cd/Streamers/CdSectorStream.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Chd/Model/ChdHeaderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Chd/Model/ChdHeaderInfo.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Chd/Model/ChdMapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Chd/Model/ChdMapInfo.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Chd/Model/V34EntryTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Chd/Model/V34EntryTypes.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Chd/Model/V5CompressionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Chd/Model/V5CompressionType.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Chd/Streamers/ChdStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Chd/Streamers/ChdStream.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Chd/Streamers/ChdStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Chd/Streamers/ChdStreamFactory.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Chd/Streamers/IChdStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Chd/Streamers/IChdStreamFactory.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Iso/Converters/IIsoCdFileDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Iso/Converters/IIsoCdFileDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Iso/Converters/IsoCdFileDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Iso/Converters/IsoCdFileDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoBootRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoBootRecord.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoDateTime.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoDirectoryRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoDirectoryRecord.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoFileFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoFileFlags.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoPathRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoPathRecord.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoSectorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoSectorInfo.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoStorageMedium.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoStorageMedium.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/FileSystems.Iso/Model/IsoVolume.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Beatmania.Pc/Models/BeatmaniaPc1Chart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Beatmania.Pc/Models/BeatmaniaPc1Chart.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Beatmania.Pc/Models/BeatmaniaPc1Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Beatmania.Pc/Models/BeatmaniaPc1Event.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Beatmania.Pc/Models/BeatmaniaPcSongSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Beatmania.Pc/Models/BeatmaniaPcSongSet.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Beatmania.Ps2/Models/BeatmaniaPs2Bgm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Beatmania.Ps2/Models/BeatmaniaPs2Bgm.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Beatmania.Ps2/Models/BeatmaniaPs2Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Beatmania.Ps2/Models/BeatmaniaPs2Event.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Beatmania.Psx/Models/BeatmaniaPsxFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Beatmania.Psx/Models/BeatmaniaPsxFile.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Beatmania/BeatmaniaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Beatmania/BeatmaniaService.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Beatmania/IBeatmaniaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Beatmania/IBeatmaniaService.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr.S573/Converters/Ddr573ImageDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr.S573/Converters/Ddr573ImageDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr.S573/Models/Ddr573DirectoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr.S573/Models/Ddr573DirectoryEntry.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr.S573/Models/Ddr573File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr.S573/Models/Ddr573File.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr.S573/Models/Ddr573Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr.S573/Models/Ddr573Image.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/DdrSongInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/DdrSongInfo.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Models/DdrConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Models/DdrConstants.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Models/DdrDatabaseEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Models/DdrDatabaseEntry.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Models/DdrMetadataDatabaseEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Models/DdrMetadataDatabaseEntry.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Models/MusicDbEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Models/MusicDbEntry.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Processors/DdrMetadata.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Processors/DdrMetadata.zip -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Processors/DdrMetadataDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Processors/DdrMetadataDatabase.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Processors/DdrMetadataDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Processors/DdrMetadataDecorator.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Processors/IDdrMetadataDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Processors/IDdrMetadataDatabase.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Processors/IDdrMetadataDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Processors/IDdrMetadataDecorator.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Streamers/Ddr573ImageStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Streamers/Ddr573ImageStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Streamers/IDdr573ImageStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Streamers/IDdr573ImageStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Streamers/IMusicDbXmlStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Streamers/IMusicDbXmlStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Ddr/Streamers/MusicDbXmlStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Ddr/Streamers/MusicDbXmlStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Vtddd/Converters/IVtdddChartDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Vtddd/Converters/IVtdddChartDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Vtddd/Converters/IVtdddStepDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Vtddd/Converters/IVtdddStepDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Vtddd/Converters/VtdddChartDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Vtddd/Converters/VtdddChartDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Vtddd/Converters/VtdddStepDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Vtddd/Converters/VtdddStepDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Vtddd/Models/VtdddDanceDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Vtddd/Models/VtdddDanceDb.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Vtddd/Models/VtdddDanceDbSong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Vtddd/Models/VtdddDanceDbSong.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Vtddd/Models/VtdddDpoFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Vtddd/Models/VtdddDpoFile.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Vtddd/Models/VtdddStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Vtddd/Models/VtdddStep.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Games.Vtddd/Streamers/IVtdddDpoStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Games.Vtddd/Streamers/IVtdddDpoStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Converters/DdsBitmapDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Converters/DdsBitmapDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Converters/DxtDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Converters/DxtDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Converters/IDdsBitmapDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Converters/IDdsBitmapDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Converters/IDxtDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Converters/IDxtDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Converters/IRawBitmapDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Converters/IRawBitmapDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Converters/RawBitmapDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Converters/RawBitmapDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Models/DdsCaps1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Models/DdsCaps1.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Models/DdsFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Models/DdsFlags.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Models/DdsImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Models/DdsImage.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Models/DdsPixelFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Models/DdsPixelFormat.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Models/DdsPixelFormatFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Models/DdsPixelFormatFlags.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Streamers/DdsStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Streamers/DdsStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Dds/Streamers/IDdsStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Dds/Streamers/IDdsStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tcb/Converters/ITcbImageDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tcb/Converters/ITcbImageDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tcb/Converters/TcbImageDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tcb/Converters/TcbImageDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tcb/Models/TcbImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tcb/Models/TcbImage.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tcb/Streamers/ITcbStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tcb/Streamers/ITcbStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tcb/Streamers/TcbStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tcb/Streamers/TcbStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Converters/ITimBitmapDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Converters/ITimBitmapDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Converters/ITimColorDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Converters/ITimColorDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Converters/ITimDataDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Converters/ITimDataDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Converters/ITimDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Converters/ITimDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Converters/TimBitmapDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Converters/TimBitmapDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Converters/TimColorDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Converters/TimColorDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Converters/TimDataDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Converters/TimDataDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Converters/TimDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Converters/TimDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Models/TimImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Models/TimImage.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Models/TimPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Models/TimPalette.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Streamers/ITimStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Streamers/ITimStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/Streamers/TimStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/Streamers/TimStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics.Tim/TimHeuristic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics.Tim/TimHeuristic.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics/Converters/GraphicDsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics/Converters/GraphicDsp.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics/Converters/IGraphicDsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics/Converters/IGraphicDsp.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics/Models/Bitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics/Models/Bitmap.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics/Models/PaletteBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics/Models/PaletteBitmap.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics/Streamers/IBitmapStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics/Streamers/IBitmapStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Graphics/Streamers/IBitmapStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Graphics/Streamers/IBitmapStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/BinaryHeuristicResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/BinaryHeuristicResult.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/Context.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/ContextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/ContextAttribute.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/HeuristicBlockResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/HeuristicBlockResult.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/HeuristicBlockStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/HeuristicBlockStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/HeuristicResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/HeuristicResult.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/HeuristicTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/HeuristicTester.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/IHeuristicBlockStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/IHeuristicBlockStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/IHeuristicReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/IHeuristicReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/IHeuristicTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/IHeuristicTester.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/IReadableHeuristic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/IReadableHeuristic.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/MemoryHeuristicReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/MemoryHeuristicReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Heuristics/StreamHeuristicReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Heuristics/StreamHeuristicReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/IRhythmCodexService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/IRhythmCodexService.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure.Tasks/ITaskContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure.Tasks/ITaskContext.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure.Tasks/ITaskProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure.Tasks/ITaskProcess.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure.Tasks/ITaskSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure.Tasks/ITaskSpec.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure.Tasks/ITaskSpecFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure.Tasks/ITaskSpecFactory.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure.Tasks/TaskProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure.Tasks/TaskProcess.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure.Tasks/TaskProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure.Tasks/TaskProgress.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure.Tasks/TaskSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure.Tasks/TaskSpec.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure.Tasks/TaskSpecFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure.Tasks/TaskSpecFactory.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/Alphabet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/Alphabet.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/ArrayUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/ArrayUtilities.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/Bcd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/Bcd.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/BigRational.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/BigRational.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/BigRationalParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/BigRationalParser.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/BitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/BitReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/Bitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/Bitter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/CachedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/CachedStream.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/EmbeddedResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/EmbeddedResources.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/Encodings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/Encodings.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/FileAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/FileAccessor.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/FileAccessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/FileAccessorFactory.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/HeuristicExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/HeuristicExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/IConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/IConsole.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/IFileAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/IFileAccessor.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/IFileAccessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/IFileAccessorFactory.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/IHeuristic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/IHeuristic.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/ILogger.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/ILoggerConfigurationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/ILoggerConfigurationSource.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/INumberFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/INumberFormatter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/IQuantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/IQuantizer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/IRandomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/IRandomizer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/Json.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/LoggerConfigurationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/LoggerConfigurationSource.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/LoggerVerbosityLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/LoggerVerbosityLevel.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/MemoryCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/MemoryCollectionExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/MemoryConvert.cs: -------------------------------------------------------------------------------- 1 | namespace RhythmCodex.Infrastructure; 2 | 3 | public static class MemoryConvert; -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/MemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/MemoryReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/ModelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/ModelAttribute.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/NumberFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/NumberFormatter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/Paths.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/Quantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/Quantizer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/Randomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/Randomizer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/ReadOnlyMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/ReadOnlyMemoryStream.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/Reducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/Reducer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/RhythmCodexException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/RhythmCodexException.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/SnapshotStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/SnapshotStream.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/StreamExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/StreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/StreamWrapper.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/TextWriterLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/TextWriterLogger.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Infrastructure/XElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Infrastructure/XElementExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/IoC/NotServiceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/IoC/NotServiceAttribute.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/IoC/ServiceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/IoC/ServiceAttribute.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/IoC/ServiceMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/IoC/ServiceMapping.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/IoC/ServiceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/IoC/ServiceTypes.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas.Sif/Converters/BinarySifDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas.Sif/Converters/BinarySifDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas.Sif/Converters/ITextSifDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas.Sif/Converters/ITextSifDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas.Sif/Converters/TextSifDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas.Sif/Converters/TextSifDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas.Sif/Models/SifInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas.Sif/Models/SifInfo.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas.Sif/Models/SifKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas.Sif/Models/SifKeys.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas.Sif/Streamers/ISifStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas.Sif/Streamers/ISifStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas.Sif/Streamers/SifStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas.Sif/Streamers/SifStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas/Models/FlagData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas/Models/FlagData.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas/Models/IMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas/Models/IMetadata.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas/Models/IMetadataAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas/Models/IMetadataAggregator.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas/Models/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas/Models/Metadata.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas/Models/MetadataAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas/Models/MetadataAggregator.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas/Models/NumericData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas/Models/NumericData.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Metadatas/Models/StringData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Metadatas/Models/StringData.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/RhythmCodex.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/RhythmCodex.csproj -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/RhythmCodexServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/RhythmCodexServiceBase.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Filter/Providers/FilterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Filter/Providers/FilterProvider.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Filter/Providers/FilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Filter/Providers/FilterType.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Filter/Providers/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Filter/Providers/IFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Filter/Providers/IFilterContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Filter/Providers/IFilterContext.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Filter/Providers/IFilterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Filter/Providers/IFilterProvider.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.ImaAdpcm/Models/ImaAdpcmChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.ImaAdpcm/Models/ImaAdpcmChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.ImaAdpcm/Models/ImaAdpcmConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.ImaAdpcm/Models/ImaAdpcmConstants.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Mixer/Converters/IStereoMixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Mixer/Converters/IStereoMixer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Mixer/Converters/StereoMixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Mixer/Converters/StereoMixer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Mixer/Models/MixAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Mixer/Models/MixAmount.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Mixer/Models/MixBalance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Mixer/Models/MixBalance.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Mixer/Models/MixState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Mixer/Models/MixState.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Psf/Models/PsfChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Psf/Models/PsfChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Psf/Streamers/IPsfStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Psf/Streamers/IPsfStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Psf/Streamers/PsfStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Psf/Streamers/PsfStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Resampler/Providers/IResampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Resampler/Providers/IResampler.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Converters/IRiffFormatDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Converters/IRiffFormatDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Converters/IRiffFormatEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Converters/IRiffFormatEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Converters/RiffFormatDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Converters/RiffFormatDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Converters/RiffFormatEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Converters/RiffFormatEncoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Models/RiffChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Models/RiffChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Models/RiffContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Models/RiffContainer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Models/RiffFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Models/RiffFormat.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Processing/ISoundConsolidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Processing/ISoundConsolidator.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Processing/SoundConsolidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Processing/SoundConsolidator.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Streamers/IRiffStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Streamers/IRiffStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Streamers/IRiffStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Streamers/IRiffStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Streamers/RiffStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Streamers/RiffStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Riff/Streamers/RiffStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Riff/Streamers/RiffStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Converters/ISvagDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Converters/ISvagDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Converters/IVagDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Converters/IVagDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Converters/IVagDecrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Converters/IVagDecrypter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Converters/IVagEncrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Converters/IVagEncrypter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Converters/IVagSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Converters/IVagSplitter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Converters/SvagDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Converters/SvagDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Converters/VagDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Converters/VagDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Converters/VagDecrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Converters/VagDecrypter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Converters/VagEncrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Converters/VagEncrypter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Converters/VagSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Converters/VagSplitter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Heuristics/SvagHeuristic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Heuristics/SvagHeuristic.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Heuristics/VagHeuristicResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Heuristics/VagHeuristicResult.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Models/SvagContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Models/SvagContainer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Models/VagChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Models/VagChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Models/VagCoefficients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Models/VagCoefficients.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Models/VagConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Models/VagConfig.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Models/VagState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Models/VagState.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Models/Xa2Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Models/Xa2Container.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Streamers/ISvagStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Streamers/ISvagStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Streamers/IVagStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Streamers/IVagStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Streamers/IXa2StreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Streamers/IXa2StreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Streamers/SvagStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Streamers/SvagStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Streamers/VagStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Streamers/VagStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Vag/Streamers/Xa2StreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Vag/Streamers/Xa2StreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Converters/ChartRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Converters/ChartRenderer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Converters/IChartRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Converters/IChartRenderer.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Converters/IPcmDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Converters/IPcmDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Converters/IWavDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Converters/IWavDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Converters/IWaveFmtDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Converters/IWaveFmtDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Converters/PcmDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Converters/PcmDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Converters/WavDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Converters/WavDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Converters/WaveFmtDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Converters/WaveFmtDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Models/ChartRendererOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Models/ChartRendererOptions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Models/IWaveFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Models/IWaveFormat.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Models/ImaAdpcmFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Models/ImaAdpcmFormat.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Models/MicrosoftAdpcmConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Models/MicrosoftAdpcmConstants.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Models/MicrosoftAdpcmFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Models/MicrosoftAdpcmFormat.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Wav/Models/WaveFmtChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Wav/Models/WaveFmtChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xa/Converters/IXaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xa/Converters/IXaDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xa/Converters/IXaFrameSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xa/Converters/IXaFrameSplitter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xa/Converters/XaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xa/Converters/XaDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xa/Converters/XaFrameSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xa/Converters/XaFrameSplitter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xa/Heuristics/IXaIsoStreamFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xa/Heuristics/IXaIsoStreamFinder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xa/Heuristics/XaIsoStreamFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xa/Heuristics/XaIsoStreamFinder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xa/Models/XaChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xa/Models/XaChunk.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xa/Models/XaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xa/Models/XaState.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xa/Streamers/IXaStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xa/Streamers/IXaStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xa/Streamers/XaStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xa/Streamers/XaStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Converters/IXwbDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Converters/IXwbDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Converters/XwbDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Converters/XwbDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Heuristics/XwbHeuristic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Heuristics/XwbHeuristic.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbCue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbCue.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbFile.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbHeader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbSound.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbSoundClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbSoundClip.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbSoundClipEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbSoundClipEvent.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbSoundDsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbSoundDsp.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbSoundRpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XsbSoundRpc.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbConstants.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbData.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbEntry.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbHeader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbMiniWaveFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbMiniWaveFormat.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbRegion.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbSampleRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbSampleRegion.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbSegIdx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbSegIdx.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Model/XwbSound.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Processors/Fcs16Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Processors/Fcs16Calculator.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Processors/IFcs16Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Processors/IFcs16Calculator.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXsbCueStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXsbCueStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXsbCueStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXsbCueStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXsbStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXsbStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXsbStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXsbStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXwbStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXwbStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXwbStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/IXwbStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XsbCueStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XsbCueStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XsbCueStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XsbCueStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XsbStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XsbStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XsbStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XsbStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XwbDataStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XwbDataStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XwbDataStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XwbDataStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XwbStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XwbStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XwbStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/Streamers/XwbStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds.Xact/XactConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds.Xact/XactConstants.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Converters/AudioDsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Converters/AudioDsp.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Converters/AudioSimd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Converters/AudioSimd.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Converters/Decibels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Converters/Decibels.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Converters/IAudioDsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Converters/IAudioDsp.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Models/AudioEndian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Models/AudioEndian.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Models/AudioSign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Models/AudioSign.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Models/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Models/Sample.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Models/SampleBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Models/SampleBuilder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Models/Sound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Models/Sound.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Models/SoundBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Models/SoundBuilder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Streamers/ISoundStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Streamers/ISoundStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Sounds/Streamers/ISoundStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Sounds/Streamers/ISoundStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Streamers/ByteSwappedReadStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Streamers/ByteSwappedReadStream.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Streamers/ITextStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Streamers/ITextStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Streamers/ITextStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Streamers/ITextStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Streamers/TextStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Streamers/TextStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Streamers/TextStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Streamers/TextStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Utils.Cursors/ArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Utils.Cursors/ArrayExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Utils.Cursors/ByteMemoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Utils.Cursors/ByteMemoryExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Utils.Cursors/ByteSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Utils.Cursors/ByteSpanExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Utils.Cursors/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Utils.Cursors/LinqExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Utils.Cursors/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Utils.Cursors/StreamExtensions.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Lib/Videos.Mjpeg/Heuristics/MjpegHeuristic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Lib/Videos.Mjpeg/Heuristics/MjpegHeuristic.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.BouncyCastle/BlowfishDecrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.BouncyCastle/BlowfishDecrypter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.CSCore/Lib/DSP/BandpassFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.CSCore/Lib/DSP/BandpassFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.CSCore/Lib/DSP/BiQuad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.CSCore/Lib/DSP/BiQuad.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.CSCore/Lib/DSP/HighShelfFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.CSCore/Lib/DSP/HighShelfFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.CSCore/Lib/DSP/HighpassFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.CSCore/Lib/DSP/HighpassFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.CSCore/Lib/DSP/LowShelfFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.CSCore/Lib/DSP/LowShelfFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.CSCore/Lib/DSP/LowpassFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.CSCore/Lib/DSP/LowpassFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.CSCore/Lib/DSP/NotchFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.CSCore/Lib/DSP/NotchFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.CSCore/Lib/DSP/PeakFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.CSCore/Lib/DSP/PeakFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.CSCore/LowPassAudioFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.CSCore/LowPassAudioFilter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.CSCore/RhythmCodex.Plugin.CSCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.CSCore/RhythmCodex.Plugin.CSCore.csproj -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.DependencyInjection/RhythmCodexService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.DependencyInjection/RhythmCodexService.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.Sdl3/Graphics/BitmapStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.Sdl3/Graphics/BitmapStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.Sdl3/Graphics/BitmapStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.Sdl3/Graphics/BitmapStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.Sdl3/Infrastructure/IoStreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.Sdl3/Infrastructure/IoStreamWrapper.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.Sdl3/Infrastructure/UserDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.Sdl3/Infrastructure/UserDataStore.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.Sdl3/Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.Sdl3/Init.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.Sdl3/RhythmCodex.Plugin.Sdl3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.Sdl3/RhythmCodex.Plugin.Sdl3.csproj -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.Sdl3/SdlException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.Sdl3/SdlException.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.Sdl3/Sounds/SoundStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.Sdl3/Sounds/SoundStreamReader.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.Sdl3/Sounds/SoundStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.Sdl3/Sounds/SoundStreamWriter.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.SevenZip/LzmaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.SevenZip/LzmaDecoder.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.SharpZipLib/Bzip2StreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.SharpZipLib/Bzip2StreamFactory.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Plugin.SharpZipLib/LzwStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Plugin.SharpZipLib/LzwStreamFactory.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Test/BaseIntegrationFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Test/BaseIntegrationFixture.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Test/BaseTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Test/BaseTestFixture.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Test/BaseUnitTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Test/BaseUnitTestFixture.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Test/CharacterSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Test/CharacterSets.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Test/DoNotCoverAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Test/DoNotCoverAttribute.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Test/IResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Test/IResolver.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Test/Infrastructure/TestConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Test/Infrastructure/TestConsole.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Test/RhythmCodex.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Test/RhythmCodex.Test.csproj -------------------------------------------------------------------------------- /Source/RhythmCodex.Test/TestAutofacModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Test/TestAutofacModule.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.Test/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.Test/TestHelper.cs -------------------------------------------------------------------------------- /Source/RhythmCodex.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/RhythmCodex.sln -------------------------------------------------------------------------------- /Source/StreamCursors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/StreamCursors/README.md -------------------------------------------------------------------------------- /Source/XwbExtract/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/XwbExtract/App.cs -------------------------------------------------------------------------------- /Source/XwbExtract/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/XwbExtract/Program.cs -------------------------------------------------------------------------------- /Source/XwbExtract/XwbExtract.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/XwbExtract/XwbExtract.csproj -------------------------------------------------------------------------------- /Source/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/Source/global.json -------------------------------------------------------------------------------- /publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/publish.bat -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaxxonPike/RhythmCodex/HEAD/publish.sh --------------------------------------------------------------------------------