├── .gitignore ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── README.md ├── ReadMe.html ├── Source ├── CMakeLists.txt ├── PeakView.cpp ├── PeakView.h ├── Resource.rdef ├── data │ ├── Bitmaps.h │ ├── about_bitmap.h │ ├── defaultsong.h │ ├── ins │ │ ├── bass │ │ ├── bass.h │ │ ├── bd │ │ ├── bd.h │ │ ├── empty │ │ ├── empty.h │ │ ├── hh │ │ ├── hh.h │ │ ├── snare │ │ ├── snare.h │ │ └── update │ └── preset_instruments.h ├── sawteeth.hvif ├── stAboutView.cpp ├── stAboutView.h ├── stAboutWindow.cpp ├── stAboutWindow.h ├── stAiffWindow.cpp ├── stAiffWindow.h ├── stApp.cpp ├── stApp.h ├── stBpView.cpp ├── stBpView.h ├── stChannelView.cpp ├── stChannelView.h ├── stCurveControl.cpp ├── stCurveControl.h ├── stCurveKnob.cpp ├── stCurveKnob.h ├── stCurveView.cpp ├── stCurveView.h ├── stInstrumentWindow.cpp ├── stInstrumentWindow.h ├── stMainWindow.cpp ├── stMainWindow.h ├── stPartSquare.cpp ├── stPartSquare.h ├── stPartWindow.cpp ├── stPartWindow.h ├── stSeqView.cpp ├── stSeqView.h ├── stTrackerControl.cpp ├── stTrackerControl.h ├── stTrackerEntry.cpp ├── stTrackerEntry.h ├── stTrackerView.cpp ├── stTrackerView.h ├── stdefs.h ├── stsp.cpp └── stsp.h ├── lib ├── CMakeLists.txt ├── headers │ ├── ins_part_channel.h │ ├── insply.h │ ├── lfo.h │ ├── player.h │ ├── stSong.h │ ├── stlimits.h │ ├── txt.h │ ├── types.h │ └── wave.h └── source │ ├── ins_part_channel.cpp │ ├── insply.cpp │ ├── lfo.cpp │ ├── player.cpp │ ├── song.cpp │ ├── txt.cpp │ └── wave.cpp ├── songs ├── Hydri │ ├── Solomon's key.st │ └── Zelda2 Battle.st ├── Nuke │ └── okolaNUKE.st ├── Spruce │ ├── 64k.st │ ├── ComicFakery.st │ ├── b2k_theme.st │ ├── climb.st │ ├── glimmer.st │ ├── horga.st │ ├── sleepy.st │ ├── spooky.st │ └── woi.st ├── biteoN │ └── Infinity.st └── steffo │ ├── lemmings.st │ └── ojoj.st ├── sounds ├── bass.st ├── drumloop.st └── lead.st └── version_history /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/README.md -------------------------------------------------------------------------------- /ReadMe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/ReadMe.html -------------------------------------------------------------------------------- /Source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/CMakeLists.txt -------------------------------------------------------------------------------- /Source/PeakView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/PeakView.cpp -------------------------------------------------------------------------------- /Source/PeakView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/PeakView.h -------------------------------------------------------------------------------- /Source/Resource.rdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/Resource.rdef -------------------------------------------------------------------------------- /Source/data/Bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/Bitmaps.h -------------------------------------------------------------------------------- /Source/data/about_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/about_bitmap.h -------------------------------------------------------------------------------- /Source/data/defaultsong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/defaultsong.h -------------------------------------------------------------------------------- /Source/data/ins/bass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/ins/bass -------------------------------------------------------------------------------- /Source/data/ins/bass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/ins/bass.h -------------------------------------------------------------------------------- /Source/data/ins/bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/ins/bd -------------------------------------------------------------------------------- /Source/data/ins/bd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/ins/bd.h -------------------------------------------------------------------------------- /Source/data/ins/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/ins/empty -------------------------------------------------------------------------------- /Source/data/ins/empty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/ins/empty.h -------------------------------------------------------------------------------- /Source/data/ins/hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/ins/hh -------------------------------------------------------------------------------- /Source/data/ins/hh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/ins/hh.h -------------------------------------------------------------------------------- /Source/data/ins/snare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/ins/snare -------------------------------------------------------------------------------- /Source/data/ins/snare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/ins/snare.h -------------------------------------------------------------------------------- /Source/data/ins/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/ins/update -------------------------------------------------------------------------------- /Source/data/preset_instruments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/data/preset_instruments.h -------------------------------------------------------------------------------- /Source/sawteeth.hvif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/sawteeth.hvif -------------------------------------------------------------------------------- /Source/stAboutView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stAboutView.cpp -------------------------------------------------------------------------------- /Source/stAboutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stAboutView.h -------------------------------------------------------------------------------- /Source/stAboutWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stAboutWindow.cpp -------------------------------------------------------------------------------- /Source/stAboutWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stAboutWindow.h -------------------------------------------------------------------------------- /Source/stAiffWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stAiffWindow.cpp -------------------------------------------------------------------------------- /Source/stAiffWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stAiffWindow.h -------------------------------------------------------------------------------- /Source/stApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stApp.cpp -------------------------------------------------------------------------------- /Source/stApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stApp.h -------------------------------------------------------------------------------- /Source/stBpView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stBpView.cpp -------------------------------------------------------------------------------- /Source/stBpView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stBpView.h -------------------------------------------------------------------------------- /Source/stChannelView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stChannelView.cpp -------------------------------------------------------------------------------- /Source/stChannelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stChannelView.h -------------------------------------------------------------------------------- /Source/stCurveControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stCurveControl.cpp -------------------------------------------------------------------------------- /Source/stCurveControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stCurveControl.h -------------------------------------------------------------------------------- /Source/stCurveKnob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stCurveKnob.cpp -------------------------------------------------------------------------------- /Source/stCurveKnob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stCurveKnob.h -------------------------------------------------------------------------------- /Source/stCurveView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stCurveView.cpp -------------------------------------------------------------------------------- /Source/stCurveView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stCurveView.h -------------------------------------------------------------------------------- /Source/stInstrumentWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stInstrumentWindow.cpp -------------------------------------------------------------------------------- /Source/stInstrumentWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stInstrumentWindow.h -------------------------------------------------------------------------------- /Source/stMainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stMainWindow.cpp -------------------------------------------------------------------------------- /Source/stMainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stMainWindow.h -------------------------------------------------------------------------------- /Source/stPartSquare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stPartSquare.cpp -------------------------------------------------------------------------------- /Source/stPartSquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stPartSquare.h -------------------------------------------------------------------------------- /Source/stPartWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stPartWindow.cpp -------------------------------------------------------------------------------- /Source/stPartWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stPartWindow.h -------------------------------------------------------------------------------- /Source/stSeqView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stSeqView.cpp -------------------------------------------------------------------------------- /Source/stSeqView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stSeqView.h -------------------------------------------------------------------------------- /Source/stTrackerControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stTrackerControl.cpp -------------------------------------------------------------------------------- /Source/stTrackerControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stTrackerControl.h -------------------------------------------------------------------------------- /Source/stTrackerEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stTrackerEntry.cpp -------------------------------------------------------------------------------- /Source/stTrackerEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stTrackerEntry.h -------------------------------------------------------------------------------- /Source/stTrackerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stTrackerView.cpp -------------------------------------------------------------------------------- /Source/stTrackerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stTrackerView.h -------------------------------------------------------------------------------- /Source/stdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stdefs.h -------------------------------------------------------------------------------- /Source/stsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stsp.cpp -------------------------------------------------------------------------------- /Source/stsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/Source/stsp.h -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/headers/ins_part_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/headers/ins_part_channel.h -------------------------------------------------------------------------------- /lib/headers/insply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/headers/insply.h -------------------------------------------------------------------------------- /lib/headers/lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/headers/lfo.h -------------------------------------------------------------------------------- /lib/headers/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/headers/player.h -------------------------------------------------------------------------------- /lib/headers/stSong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/headers/stSong.h -------------------------------------------------------------------------------- /lib/headers/stlimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/headers/stlimits.h -------------------------------------------------------------------------------- /lib/headers/txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/headers/txt.h -------------------------------------------------------------------------------- /lib/headers/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/headers/types.h -------------------------------------------------------------------------------- /lib/headers/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/headers/wave.h -------------------------------------------------------------------------------- /lib/source/ins_part_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/source/ins_part_channel.cpp -------------------------------------------------------------------------------- /lib/source/insply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/source/insply.cpp -------------------------------------------------------------------------------- /lib/source/lfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/source/lfo.cpp -------------------------------------------------------------------------------- /lib/source/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/source/player.cpp -------------------------------------------------------------------------------- /lib/source/song.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/source/song.cpp -------------------------------------------------------------------------------- /lib/source/txt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/source/txt.cpp -------------------------------------------------------------------------------- /lib/source/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/lib/source/wave.cpp -------------------------------------------------------------------------------- /songs/Hydri/Solomon's key.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Hydri/Solomon's key.st -------------------------------------------------------------------------------- /songs/Hydri/Zelda2 Battle.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Hydri/Zelda2 Battle.st -------------------------------------------------------------------------------- /songs/Nuke/okolaNUKE.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Nuke/okolaNUKE.st -------------------------------------------------------------------------------- /songs/Spruce/64k.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Spruce/64k.st -------------------------------------------------------------------------------- /songs/Spruce/ComicFakery.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Spruce/ComicFakery.st -------------------------------------------------------------------------------- /songs/Spruce/b2k_theme.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Spruce/b2k_theme.st -------------------------------------------------------------------------------- /songs/Spruce/climb.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Spruce/climb.st -------------------------------------------------------------------------------- /songs/Spruce/glimmer.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Spruce/glimmer.st -------------------------------------------------------------------------------- /songs/Spruce/horga.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Spruce/horga.st -------------------------------------------------------------------------------- /songs/Spruce/sleepy.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Spruce/sleepy.st -------------------------------------------------------------------------------- /songs/Spruce/spooky.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Spruce/spooky.st -------------------------------------------------------------------------------- /songs/Spruce/woi.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/Spruce/woi.st -------------------------------------------------------------------------------- /songs/biteoN/Infinity.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/biteoN/Infinity.st -------------------------------------------------------------------------------- /songs/steffo/lemmings.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/steffo/lemmings.st -------------------------------------------------------------------------------- /songs/steffo/ojoj.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/songs/steffo/ojoj.st -------------------------------------------------------------------------------- /sounds/bass.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/sounds/bass.st -------------------------------------------------------------------------------- /sounds/drumloop.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/sounds/drumloop.st -------------------------------------------------------------------------------- /sounds/lead.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/sounds/lead.st -------------------------------------------------------------------------------- /version_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulkomandy/Sawteeth/HEAD/version_history --------------------------------------------------------------------------------