├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.chip8 ├── Makefile.emscripten ├── Makefile.linux ├── Makefile.macos ├── Makefile.mingw ├── README.md ├── assets ├── dub.song ├── elements ├── font.png ├── gamecontrollerdb.txt └── gui.png ├── doc ├── EFFECTS.TXT ├── FORMAT.TXT ├── KEYS.TXT ├── MERSENNE.TXT └── README.TXT ├── scripts └── buildComponent.js ├── src ├── App.h ├── AudioDeviceSelector.cpp ├── AudioDeviceSelector.h ├── Color.cpp ├── Color.h ├── ColumnEditor.cpp ├── ColumnEditor.h ├── CommandOptionSelector.cpp ├── CommandOptionSelector.h ├── CommandSelector.cpp ├── CommandSelector.h ├── CopyBuffer.cpp ├── CopyBuffer.h ├── Debug.cpp ├── Debug.h ├── Editor.cpp ├── Editor.h ├── EditorState.cpp ├── EditorState.h ├── EffectParam.cpp ├── EffectParam.h ├── Emscripten.cpp ├── Emscripten.h ├── FileSection.cpp ├── FileSection.h ├── FileSelector.cpp ├── FileSelector.h ├── Gamepad.cpp ├── Gamepad.h ├── GenericSelector.cpp ├── GenericSelector.h ├── IOscillator.cpp ├── IOscillator.h ├── IPlayer.cpp ├── IPlayer.h ├── ISynth.cpp ├── ISynth.h ├── ITrackState.cpp ├── ITrackState.h ├── Label.cpp ├── Label.h ├── Listenable.cpp ├── Listenable.h ├── Listener.h ├── Lockable.cpp ├── Lockable.h ├── Macro.cpp ├── Macro.h ├── MacroEditor.cpp ├── MacroEditor.h ├── MacroInfo.cpp ├── MacroInfo.h ├── Main.cpp ├── MainEditor.cpp ├── MainEditor.h ├── MessageBox.cpp ├── MessageBox.h ├── MessageDisplayer.cpp ├── MessageDisplayer.h ├── MessageManager.cpp ├── MessageManager.h ├── Mixer.cpp ├── Mixer.h ├── NoteState.cpp ├── NoteState.h ├── OctaveInfo.cpp ├── OctaveInfo.h ├── Oscillator.cpp ├── Oscillator.h ├── Oscilloscope.cpp ├── Oscilloscope.h ├── Pattern.cpp ├── Pattern.h ├── PatternEditor.cpp ├── PatternEditor.h ├── PatternLengthInfo.cpp ├── PatternLengthInfo.h ├── PatternRow.cpp ├── PatternRow.h ├── Player.cpp ├── Player.h ├── PlayerState.cpp ├── PlayerState.h ├── Prototracker.cpp ├── Prototracker.h ├── Random.cpp ├── Random.h ├── Renderer.cpp ├── Renderer.h ├── Sample.h ├── SectionListener.cpp ├── SectionListener.h ├── Sequence.cpp ├── Sequence.h ├── SequenceInfo.cpp ├── SequenceInfo.h ├── SequenceRow.cpp ├── SequenceRow.h ├── SequenceRowEditor.cpp ├── SequenceRowEditor.h ├── Song.cpp ├── Song.h ├── SongLengthInfo.cpp ├── SongLengthInfo.h ├── Synth.cpp ├── Synth.h ├── TextEditor.cpp ├── TextEditor.h ├── Theme.cpp ├── Theme.h ├── TooltipDisplayer.cpp ├── TooltipDisplayer.h ├── TooltipManager.cpp ├── TooltipManager.h ├── TouchRegion.cpp ├── TouchRegion.h ├── TrackEditor.cpp ├── TrackEditor.h ├── TrackState.cpp ├── TrackState.h ├── Value.cpp ├── Value.h ├── Wave.cpp ├── Wave.h ├── WaveGen.cpp ├── WaveGen.h ├── WaveStore.cpp ├── WaveStore.h ├── WaveView.cpp └── WaveView.h └── templates └── Editor ├── {{Name}}.cpp └── {{Name}}.h /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.chip8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/Makefile.chip8 -------------------------------------------------------------------------------- /Makefile.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/Makefile.emscripten -------------------------------------------------------------------------------- /Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/Makefile.linux -------------------------------------------------------------------------------- /Makefile.macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/Makefile.macos -------------------------------------------------------------------------------- /Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/Makefile.mingw -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/README.md -------------------------------------------------------------------------------- /assets/dub.song: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/assets/dub.song -------------------------------------------------------------------------------- /assets/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/assets/elements -------------------------------------------------------------------------------- /assets/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/assets/font.png -------------------------------------------------------------------------------- /assets/gamecontrollerdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/assets/gamecontrollerdb.txt -------------------------------------------------------------------------------- /assets/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/assets/gui.png -------------------------------------------------------------------------------- /doc/EFFECTS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/doc/EFFECTS.TXT -------------------------------------------------------------------------------- /doc/FORMAT.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/doc/FORMAT.TXT -------------------------------------------------------------------------------- /doc/KEYS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/doc/KEYS.TXT -------------------------------------------------------------------------------- /doc/MERSENNE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/doc/MERSENNE.TXT -------------------------------------------------------------------------------- /doc/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/doc/README.TXT -------------------------------------------------------------------------------- /scripts/buildComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/scripts/buildComponent.js -------------------------------------------------------------------------------- /src/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/App.h -------------------------------------------------------------------------------- /src/AudioDeviceSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/AudioDeviceSelector.cpp -------------------------------------------------------------------------------- /src/AudioDeviceSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/AudioDeviceSelector.h -------------------------------------------------------------------------------- /src/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Color.cpp -------------------------------------------------------------------------------- /src/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Color.h -------------------------------------------------------------------------------- /src/ColumnEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/ColumnEditor.cpp -------------------------------------------------------------------------------- /src/ColumnEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/ColumnEditor.h -------------------------------------------------------------------------------- /src/CommandOptionSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/CommandOptionSelector.cpp -------------------------------------------------------------------------------- /src/CommandOptionSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/CommandOptionSelector.h -------------------------------------------------------------------------------- /src/CommandSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/CommandSelector.cpp -------------------------------------------------------------------------------- /src/CommandSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/CommandSelector.h -------------------------------------------------------------------------------- /src/CopyBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/CopyBuffer.cpp -------------------------------------------------------------------------------- /src/CopyBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/CopyBuffer.h -------------------------------------------------------------------------------- /src/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Debug.cpp -------------------------------------------------------------------------------- /src/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Debug.h -------------------------------------------------------------------------------- /src/Editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Editor.cpp -------------------------------------------------------------------------------- /src/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Editor.h -------------------------------------------------------------------------------- /src/EditorState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/EditorState.cpp -------------------------------------------------------------------------------- /src/EditorState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/EditorState.h -------------------------------------------------------------------------------- /src/EffectParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/EffectParam.cpp -------------------------------------------------------------------------------- /src/EffectParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/EffectParam.h -------------------------------------------------------------------------------- /src/Emscripten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Emscripten.cpp -------------------------------------------------------------------------------- /src/Emscripten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Emscripten.h -------------------------------------------------------------------------------- /src/FileSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/FileSection.cpp -------------------------------------------------------------------------------- /src/FileSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/FileSection.h -------------------------------------------------------------------------------- /src/FileSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/FileSelector.cpp -------------------------------------------------------------------------------- /src/FileSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/FileSelector.h -------------------------------------------------------------------------------- /src/Gamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Gamepad.cpp -------------------------------------------------------------------------------- /src/Gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Gamepad.h -------------------------------------------------------------------------------- /src/GenericSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/GenericSelector.cpp -------------------------------------------------------------------------------- /src/GenericSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/GenericSelector.h -------------------------------------------------------------------------------- /src/IOscillator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/IOscillator.cpp -------------------------------------------------------------------------------- /src/IOscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/IOscillator.h -------------------------------------------------------------------------------- /src/IPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/IPlayer.cpp -------------------------------------------------------------------------------- /src/IPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/IPlayer.h -------------------------------------------------------------------------------- /src/ISynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/ISynth.cpp -------------------------------------------------------------------------------- /src/ISynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/ISynth.h -------------------------------------------------------------------------------- /src/ITrackState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/ITrackState.cpp -------------------------------------------------------------------------------- /src/ITrackState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/ITrackState.h -------------------------------------------------------------------------------- /src/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Label.cpp -------------------------------------------------------------------------------- /src/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Label.h -------------------------------------------------------------------------------- /src/Listenable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Listenable.cpp -------------------------------------------------------------------------------- /src/Listenable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Listenable.h -------------------------------------------------------------------------------- /src/Listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Listener.h -------------------------------------------------------------------------------- /src/Lockable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Lockable.cpp -------------------------------------------------------------------------------- /src/Lockable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Lockable.h -------------------------------------------------------------------------------- /src/Macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Macro.cpp -------------------------------------------------------------------------------- /src/Macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Macro.h -------------------------------------------------------------------------------- /src/MacroEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MacroEditor.cpp -------------------------------------------------------------------------------- /src/MacroEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MacroEditor.h -------------------------------------------------------------------------------- /src/MacroInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MacroInfo.cpp -------------------------------------------------------------------------------- /src/MacroInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MacroInfo.h -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/MainEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MainEditor.cpp -------------------------------------------------------------------------------- /src/MainEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MainEditor.h -------------------------------------------------------------------------------- /src/MessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MessageBox.cpp -------------------------------------------------------------------------------- /src/MessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MessageBox.h -------------------------------------------------------------------------------- /src/MessageDisplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MessageDisplayer.cpp -------------------------------------------------------------------------------- /src/MessageDisplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MessageDisplayer.h -------------------------------------------------------------------------------- /src/MessageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MessageManager.cpp -------------------------------------------------------------------------------- /src/MessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/MessageManager.h -------------------------------------------------------------------------------- /src/Mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Mixer.cpp -------------------------------------------------------------------------------- /src/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Mixer.h -------------------------------------------------------------------------------- /src/NoteState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/NoteState.cpp -------------------------------------------------------------------------------- /src/NoteState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/NoteState.h -------------------------------------------------------------------------------- /src/OctaveInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/OctaveInfo.cpp -------------------------------------------------------------------------------- /src/OctaveInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/OctaveInfo.h -------------------------------------------------------------------------------- /src/Oscillator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Oscillator.cpp -------------------------------------------------------------------------------- /src/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Oscillator.h -------------------------------------------------------------------------------- /src/Oscilloscope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Oscilloscope.cpp -------------------------------------------------------------------------------- /src/Oscilloscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Oscilloscope.h -------------------------------------------------------------------------------- /src/Pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Pattern.cpp -------------------------------------------------------------------------------- /src/Pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Pattern.h -------------------------------------------------------------------------------- /src/PatternEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/PatternEditor.cpp -------------------------------------------------------------------------------- /src/PatternEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/PatternEditor.h -------------------------------------------------------------------------------- /src/PatternLengthInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/PatternLengthInfo.cpp -------------------------------------------------------------------------------- /src/PatternLengthInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/PatternLengthInfo.h -------------------------------------------------------------------------------- /src/PatternRow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/PatternRow.cpp -------------------------------------------------------------------------------- /src/PatternRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/PatternRow.h -------------------------------------------------------------------------------- /src/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Player.cpp -------------------------------------------------------------------------------- /src/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Player.h -------------------------------------------------------------------------------- /src/PlayerState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/PlayerState.cpp -------------------------------------------------------------------------------- /src/PlayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/PlayerState.h -------------------------------------------------------------------------------- /src/Prototracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Prototracker.cpp -------------------------------------------------------------------------------- /src/Prototracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Prototracker.h -------------------------------------------------------------------------------- /src/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Random.cpp -------------------------------------------------------------------------------- /src/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Random.h -------------------------------------------------------------------------------- /src/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Renderer.cpp -------------------------------------------------------------------------------- /src/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Renderer.h -------------------------------------------------------------------------------- /src/Sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Sample.h -------------------------------------------------------------------------------- /src/SectionListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/SectionListener.cpp -------------------------------------------------------------------------------- /src/SectionListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/SectionListener.h -------------------------------------------------------------------------------- /src/Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Sequence.cpp -------------------------------------------------------------------------------- /src/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Sequence.h -------------------------------------------------------------------------------- /src/SequenceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/SequenceInfo.cpp -------------------------------------------------------------------------------- /src/SequenceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/SequenceInfo.h -------------------------------------------------------------------------------- /src/SequenceRow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/SequenceRow.cpp -------------------------------------------------------------------------------- /src/SequenceRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/SequenceRow.h -------------------------------------------------------------------------------- /src/SequenceRowEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/SequenceRowEditor.cpp -------------------------------------------------------------------------------- /src/SequenceRowEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/SequenceRowEditor.h -------------------------------------------------------------------------------- /src/Song.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Song.cpp -------------------------------------------------------------------------------- /src/Song.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Song.h -------------------------------------------------------------------------------- /src/SongLengthInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/SongLengthInfo.cpp -------------------------------------------------------------------------------- /src/SongLengthInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/SongLengthInfo.h -------------------------------------------------------------------------------- /src/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Synth.cpp -------------------------------------------------------------------------------- /src/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Synth.h -------------------------------------------------------------------------------- /src/TextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TextEditor.cpp -------------------------------------------------------------------------------- /src/TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TextEditor.h -------------------------------------------------------------------------------- /src/Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Theme.cpp -------------------------------------------------------------------------------- /src/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Theme.h -------------------------------------------------------------------------------- /src/TooltipDisplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TooltipDisplayer.cpp -------------------------------------------------------------------------------- /src/TooltipDisplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TooltipDisplayer.h -------------------------------------------------------------------------------- /src/TooltipManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TooltipManager.cpp -------------------------------------------------------------------------------- /src/TooltipManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TooltipManager.h -------------------------------------------------------------------------------- /src/TouchRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TouchRegion.cpp -------------------------------------------------------------------------------- /src/TouchRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TouchRegion.h -------------------------------------------------------------------------------- /src/TrackEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TrackEditor.cpp -------------------------------------------------------------------------------- /src/TrackEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TrackEditor.h -------------------------------------------------------------------------------- /src/TrackState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TrackState.cpp -------------------------------------------------------------------------------- /src/TrackState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/TrackState.h -------------------------------------------------------------------------------- /src/Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Value.cpp -------------------------------------------------------------------------------- /src/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Value.h -------------------------------------------------------------------------------- /src/Wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Wave.cpp -------------------------------------------------------------------------------- /src/Wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/Wave.h -------------------------------------------------------------------------------- /src/WaveGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/WaveGen.cpp -------------------------------------------------------------------------------- /src/WaveGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/WaveGen.h -------------------------------------------------------------------------------- /src/WaveStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/WaveStore.cpp -------------------------------------------------------------------------------- /src/WaveStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/WaveStore.h -------------------------------------------------------------------------------- /src/WaveView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/WaveView.cpp -------------------------------------------------------------------------------- /src/WaveView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/src/WaveView.h -------------------------------------------------------------------------------- /templates/Editor/{{Name}}.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/templates/Editor/{{Name}}.cpp -------------------------------------------------------------------------------- /templates/Editor/{{Name}}.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kometbomb/prototracker/HEAD/templates/Editor/{{Name}}.h --------------------------------------------------------------------------------