├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── agbplay-gui.pro ├── boost └── math │ └── special_functions │ └── sinc.hpp ├── resources ├── about.html ├── agbplay.qrc └── logo.png ├── screenshot.png ├── src ├── AudioThread.cpp ├── AudioThread.h ├── ConfigManager.cpp ├── OS.cpp ├── PianoKeys.cpp ├── PianoKeys.h ├── Player.cpp ├── Player.h ├── PlayerControls.cpp ├── PlayerControls.h ├── PlayerWindow.cpp ├── PlayerWindow.h ├── PlaylistModel.cpp ├── PlaylistModel.h ├── PreferencesWindow.cpp ├── PreferencesWindow.h ├── RiffWriter.cpp ├── RiffWriter.h ├── RomView.cpp ├── RomView.h ├── SongModel.cpp ├── SongModel.h ├── TrackHeader.cpp ├── TrackHeader.h ├── TrackList.cpp ├── TrackList.h ├── TrackView.cpp ├── TrackView.h ├── UiUtils.cpp ├── UiUtils.h ├── VUMeter.cpp ├── VUMeter.h └── main.cpp └── windows └── Makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/README.md -------------------------------------------------------------------------------- /agbplay-gui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/agbplay-gui.pro -------------------------------------------------------------------------------- /boost/math/special_functions/sinc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/boost/math/special_functions/sinc.hpp -------------------------------------------------------------------------------- /resources/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/resources/about.html -------------------------------------------------------------------------------- /resources/agbplay.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/resources/agbplay.qrc -------------------------------------------------------------------------------- /resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/resources/logo.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/AudioThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/AudioThread.cpp -------------------------------------------------------------------------------- /src/AudioThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/AudioThread.h -------------------------------------------------------------------------------- /src/ConfigManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/ConfigManager.cpp -------------------------------------------------------------------------------- /src/OS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/OS.cpp -------------------------------------------------------------------------------- /src/PianoKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/PianoKeys.cpp -------------------------------------------------------------------------------- /src/PianoKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/PianoKeys.h -------------------------------------------------------------------------------- /src/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/Player.cpp -------------------------------------------------------------------------------- /src/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/Player.h -------------------------------------------------------------------------------- /src/PlayerControls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/PlayerControls.cpp -------------------------------------------------------------------------------- /src/PlayerControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/PlayerControls.h -------------------------------------------------------------------------------- /src/PlayerWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/PlayerWindow.cpp -------------------------------------------------------------------------------- /src/PlayerWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/PlayerWindow.h -------------------------------------------------------------------------------- /src/PlaylistModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/PlaylistModel.cpp -------------------------------------------------------------------------------- /src/PlaylistModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/PlaylistModel.h -------------------------------------------------------------------------------- /src/PreferencesWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/PreferencesWindow.cpp -------------------------------------------------------------------------------- /src/PreferencesWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/PreferencesWindow.h -------------------------------------------------------------------------------- /src/RiffWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/RiffWriter.cpp -------------------------------------------------------------------------------- /src/RiffWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/RiffWriter.h -------------------------------------------------------------------------------- /src/RomView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/RomView.cpp -------------------------------------------------------------------------------- /src/RomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/RomView.h -------------------------------------------------------------------------------- /src/SongModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/SongModel.cpp -------------------------------------------------------------------------------- /src/SongModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/SongModel.h -------------------------------------------------------------------------------- /src/TrackHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/TrackHeader.cpp -------------------------------------------------------------------------------- /src/TrackHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/TrackHeader.h -------------------------------------------------------------------------------- /src/TrackList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/TrackList.cpp -------------------------------------------------------------------------------- /src/TrackList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/TrackList.h -------------------------------------------------------------------------------- /src/TrackView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/TrackView.cpp -------------------------------------------------------------------------------- /src/TrackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/TrackView.h -------------------------------------------------------------------------------- /src/UiUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/UiUtils.cpp -------------------------------------------------------------------------------- /src/UiUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/UiUtils.h -------------------------------------------------------------------------------- /src/VUMeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/VUMeter.cpp -------------------------------------------------------------------------------- /src/VUMeter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/VUMeter.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/src/main.cpp -------------------------------------------------------------------------------- /windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/agbplay-gui/HEAD/windows/Makefile --------------------------------------------------------------------------------