├── .gitignore ├── CMakeLists.txt ├── README.md ├── android ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── CMakeLists.txt │ │ ├── assets │ │ ├── cpp │ │ ├── java │ │ └── com │ │ │ └── twobit │ │ │ └── fakesid │ │ │ ├── Lib.java │ │ │ ├── MainActivity.java │ │ │ └── MainView.java │ │ └── res │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── assets ├── demo1.sng ├── demo2.sng └── gui.png ├── docs ├── manual │ ├── effect-select.png │ ├── effect-view.png │ ├── instr-view-filter.png │ ├── instr-view-wave.png │ ├── instrument-select.png │ ├── jam-view.png │ ├── main-view.png │ ├── readme.md │ ├── song-view.png │ ├── track-select.png │ └── track-view.png ├── privacy-policy.md ├── readme.md ├── tut-00 │ ├── main-view.png │ ├── song-view.png │ └── tutorial.md └── tut-01 │ ├── arp-instr.png │ ├── arp-notes.png │ ├── arp-track.png │ ├── arp1-effect.png │ ├── arp2-effect.png │ ├── arp3-effect.png │ ├── basic-0.mp3 │ ├── basic-1.mp3 │ ├── basic-2.mp3 │ ├── basic-3.mp3 │ ├── bass-filter.png │ ├── bass-notes.png │ ├── bass-track.png │ ├── bass-wave.png │ ├── kick-effect.png │ ├── kick-filter.png │ ├── kick-notes.png │ ├── kick-track.png │ ├── kick-wave.png │ ├── readme.md │ ├── save.png │ ├── snare-effect.png │ ├── snare-filter.png │ ├── snare-notes.png │ ├── snare-track.png │ ├── snare-wave.png │ ├── song1.png │ ├── song2.png │ ├── tempo-select.png │ └── track-select.png └── src ├── app.cpp ├── app.hpp ├── edit.cpp ├── edit.hpp ├── foo.cpp ├── foo.hpp ├── gfx.cpp ├── gfx.hpp ├── gui.cpp ├── gui.hpp ├── instrument_effect_view.cpp ├── instrument_effect_view.hpp ├── jam_view.cpp ├── jam_view.hpp ├── main.cpp ├── player.cpp ├── player.hpp ├── project_view.cpp ├── project_view.hpp ├── render.cpp ├── render.hpp ├── resid-0.16 ├── AUTHORS ├── COPYING ├── INSTALL ├── NEWS ├── README ├── THANKS ├── TODO ├── VC_CC_SUPPORT.txt ├── envelope.cc ├── envelope.h ├── extfilt.cc ├── extfilt.h ├── filter.cc ├── filter.h ├── pot.cc ├── pot.h ├── sid.cc ├── sid.h ├── siddefs.h ├── siddefs.h.in ├── spline.h ├── version.cc ├── voice.cc ├── voice.h ├── wave.cc ├── wave.h ├── wave6581_PST.cc ├── wave6581_PS_.cc ├── wave6581_P_T.cc ├── wave6581__ST.cc ├── wave8580_PST.cc ├── wave8580_PS_.cc ├── wave8580_P_T.cc └── wave8580__ST.cc ├── settings.cpp ├── settings.hpp ├── sid_engine.cpp ├── sid_engine.hpp ├── song.cpp ├── song.hpp ├── song_v0.hpp ├── song_view.cpp ├── song_view.hpp ├── stb_image.h ├── track_view.cpp └── track_view.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/CMakeLists.txt -------------------------------------------------------------------------------- /android/app/src/main/assets: -------------------------------------------------------------------------------- 1 | ../../../../assets -------------------------------------------------------------------------------- /android/app/src/main/cpp: -------------------------------------------------------------------------------- 1 | ../../../../src -------------------------------------------------------------------------------- /android/app/src/main/java/com/twobit/fakesid/Lib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/java/com/twobit/fakesid/Lib.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/twobit/fakesid/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/java/com/twobit/fakesid/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/twobit/fakesid/MainView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/java/com/twobit/fakesid/MainView.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /assets/demo1.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/assets/demo1.sng -------------------------------------------------------------------------------- /assets/demo2.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/assets/demo2.sng -------------------------------------------------------------------------------- /assets/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/assets/gui.png -------------------------------------------------------------------------------- /docs/manual/effect-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/manual/effect-select.png -------------------------------------------------------------------------------- /docs/manual/effect-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/manual/effect-view.png -------------------------------------------------------------------------------- /docs/manual/instr-view-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/manual/instr-view-filter.png -------------------------------------------------------------------------------- /docs/manual/instr-view-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/manual/instr-view-wave.png -------------------------------------------------------------------------------- /docs/manual/instrument-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/manual/instrument-select.png -------------------------------------------------------------------------------- /docs/manual/jam-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/manual/jam-view.png -------------------------------------------------------------------------------- /docs/manual/main-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/manual/main-view.png -------------------------------------------------------------------------------- /docs/manual/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/manual/readme.md -------------------------------------------------------------------------------- /docs/manual/song-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/manual/song-view.png -------------------------------------------------------------------------------- /docs/manual/track-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/manual/track-select.png -------------------------------------------------------------------------------- /docs/manual/track-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/manual/track-view.png -------------------------------------------------------------------------------- /docs/privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/privacy-policy.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/tut-00/main-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-00/main-view.png -------------------------------------------------------------------------------- /docs/tut-00/song-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-00/song-view.png -------------------------------------------------------------------------------- /docs/tut-00/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-00/tutorial.md -------------------------------------------------------------------------------- /docs/tut-01/arp-instr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/arp-instr.png -------------------------------------------------------------------------------- /docs/tut-01/arp-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/arp-notes.png -------------------------------------------------------------------------------- /docs/tut-01/arp-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/arp-track.png -------------------------------------------------------------------------------- /docs/tut-01/arp1-effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/arp1-effect.png -------------------------------------------------------------------------------- /docs/tut-01/arp2-effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/arp2-effect.png -------------------------------------------------------------------------------- /docs/tut-01/arp3-effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/arp3-effect.png -------------------------------------------------------------------------------- /docs/tut-01/basic-0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/basic-0.mp3 -------------------------------------------------------------------------------- /docs/tut-01/basic-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/basic-1.mp3 -------------------------------------------------------------------------------- /docs/tut-01/basic-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/basic-2.mp3 -------------------------------------------------------------------------------- /docs/tut-01/basic-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/basic-3.mp3 -------------------------------------------------------------------------------- /docs/tut-01/bass-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/bass-filter.png -------------------------------------------------------------------------------- /docs/tut-01/bass-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/bass-notes.png -------------------------------------------------------------------------------- /docs/tut-01/bass-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/bass-track.png -------------------------------------------------------------------------------- /docs/tut-01/bass-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/bass-wave.png -------------------------------------------------------------------------------- /docs/tut-01/kick-effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/kick-effect.png -------------------------------------------------------------------------------- /docs/tut-01/kick-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/kick-filter.png -------------------------------------------------------------------------------- /docs/tut-01/kick-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/kick-notes.png -------------------------------------------------------------------------------- /docs/tut-01/kick-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/kick-track.png -------------------------------------------------------------------------------- /docs/tut-01/kick-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/kick-wave.png -------------------------------------------------------------------------------- /docs/tut-01/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/readme.md -------------------------------------------------------------------------------- /docs/tut-01/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/save.png -------------------------------------------------------------------------------- /docs/tut-01/snare-effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/snare-effect.png -------------------------------------------------------------------------------- /docs/tut-01/snare-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/snare-filter.png -------------------------------------------------------------------------------- /docs/tut-01/snare-notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/snare-notes.png -------------------------------------------------------------------------------- /docs/tut-01/snare-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/snare-track.png -------------------------------------------------------------------------------- /docs/tut-01/snare-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/snare-wave.png -------------------------------------------------------------------------------- /docs/tut-01/song1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/song1.png -------------------------------------------------------------------------------- /docs/tut-01/song2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/song2.png -------------------------------------------------------------------------------- /docs/tut-01/tempo-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/tempo-select.png -------------------------------------------------------------------------------- /docs/tut-01/track-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/docs/tut-01/track-select.png -------------------------------------------------------------------------------- /src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/app.cpp -------------------------------------------------------------------------------- /src/app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/app.hpp -------------------------------------------------------------------------------- /src/edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/edit.cpp -------------------------------------------------------------------------------- /src/edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/edit.hpp -------------------------------------------------------------------------------- /src/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/foo.cpp -------------------------------------------------------------------------------- /src/foo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/foo.hpp -------------------------------------------------------------------------------- /src/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/gfx.cpp -------------------------------------------------------------------------------- /src/gfx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/gfx.hpp -------------------------------------------------------------------------------- /src/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/gui.cpp -------------------------------------------------------------------------------- /src/gui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/gui.hpp -------------------------------------------------------------------------------- /src/instrument_effect_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/instrument_effect_view.cpp -------------------------------------------------------------------------------- /src/instrument_effect_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/instrument_effect_view.hpp -------------------------------------------------------------------------------- /src/jam_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/jam_view.cpp -------------------------------------------------------------------------------- /src/jam_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/jam_view.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/player.cpp -------------------------------------------------------------------------------- /src/player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/player.hpp -------------------------------------------------------------------------------- /src/project_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/project_view.cpp -------------------------------------------------------------------------------- /src/project_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/project_view.hpp -------------------------------------------------------------------------------- /src/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/render.cpp -------------------------------------------------------------------------------- /src/render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/render.hpp -------------------------------------------------------------------------------- /src/resid-0.16/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/AUTHORS -------------------------------------------------------------------------------- /src/resid-0.16/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/COPYING -------------------------------------------------------------------------------- /src/resid-0.16/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/INSTALL -------------------------------------------------------------------------------- /src/resid-0.16/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/NEWS -------------------------------------------------------------------------------- /src/resid-0.16/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/README -------------------------------------------------------------------------------- /src/resid-0.16/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/THANKS -------------------------------------------------------------------------------- /src/resid-0.16/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/TODO -------------------------------------------------------------------------------- /src/resid-0.16/VC_CC_SUPPORT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/VC_CC_SUPPORT.txt -------------------------------------------------------------------------------- /src/resid-0.16/envelope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/envelope.cc -------------------------------------------------------------------------------- /src/resid-0.16/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/envelope.h -------------------------------------------------------------------------------- /src/resid-0.16/extfilt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/extfilt.cc -------------------------------------------------------------------------------- /src/resid-0.16/extfilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/extfilt.h -------------------------------------------------------------------------------- /src/resid-0.16/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/filter.cc -------------------------------------------------------------------------------- /src/resid-0.16/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/filter.h -------------------------------------------------------------------------------- /src/resid-0.16/pot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/pot.cc -------------------------------------------------------------------------------- /src/resid-0.16/pot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/pot.h -------------------------------------------------------------------------------- /src/resid-0.16/sid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/sid.cc -------------------------------------------------------------------------------- /src/resid-0.16/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/sid.h -------------------------------------------------------------------------------- /src/resid-0.16/siddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/siddefs.h -------------------------------------------------------------------------------- /src/resid-0.16/siddefs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/siddefs.h.in -------------------------------------------------------------------------------- /src/resid-0.16/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/spline.h -------------------------------------------------------------------------------- /src/resid-0.16/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/version.cc -------------------------------------------------------------------------------- /src/resid-0.16/voice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/voice.cc -------------------------------------------------------------------------------- /src/resid-0.16/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/voice.h -------------------------------------------------------------------------------- /src/resid-0.16/wave.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/wave.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/wave.h -------------------------------------------------------------------------------- /src/resid-0.16/wave6581_PST.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/wave6581_PST.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave6581_PS_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/wave6581_PS_.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave6581_P_T.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/wave6581_P_T.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave6581__ST.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/wave6581__ST.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave8580_PST.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/wave8580_PST.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave8580_PS_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/wave8580_PS_.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave8580_P_T.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/wave8580_P_T.cc -------------------------------------------------------------------------------- /src/resid-0.16/wave8580__ST.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/resid-0.16/wave8580__ST.cc -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/settings.hpp -------------------------------------------------------------------------------- /src/sid_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/sid_engine.cpp -------------------------------------------------------------------------------- /src/sid_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/sid_engine.hpp -------------------------------------------------------------------------------- /src/song.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/song.cpp -------------------------------------------------------------------------------- /src/song.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/song.hpp -------------------------------------------------------------------------------- /src/song_v0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/song_v0.hpp -------------------------------------------------------------------------------- /src/song_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/song_view.cpp -------------------------------------------------------------------------------- /src/song_view.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int get_selected_block(); 4 | void draw_song_view(); 5 | -------------------------------------------------------------------------------- /src/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/stb_image.h -------------------------------------------------------------------------------- /src/track_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/track_view.cpp -------------------------------------------------------------------------------- /src/track_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2bt/fakesid/HEAD/src/track_view.hpp --------------------------------------------------------------------------------