├── .gitattributes ├── .gitignore ├── AppDir └── usr │ └── share │ ├── applications │ └── OverlayPal.desktop │ └── icons │ └── hicolor │ └── 128x128 │ └── apps │ └── OverlayPal.png ├── LICENSE ├── OverlayPal.pro ├── README.md ├── README.pdf ├── appveyor.yml ├── nespalettes ├── README.md └── palgen.pal ├── screenshots └── Bernie-screenshot.png ├── src ├── cmpl │ ├── FirstPass.cmpl │ └── SecondPass.cmpl ├── cpp │ ├── Array2D.h │ ├── Export.cpp │ ├── Export.h │ ├── GridLayer.cpp │ ├── GridLayer.h │ ├── HardwareColorsModel.cpp │ ├── HardwareColorsModel.h │ ├── ImageUtils.cpp │ ├── ImageUtils.h │ ├── OverlayOptimiser.cpp │ ├── OverlayOptimiser.h │ ├── OverlayPalApp.cpp │ ├── OverlayPalApp.h │ ├── OverlayPalGuiBackend.cpp │ ├── OverlayPalGuiBackend.h │ ├── SimplePaletteModel.cpp │ ├── SimplePaletteModel.h │ ├── Sprite.cpp │ ├── Sprite.h │ ├── SubProcess.cpp │ ├── SubProcess.h │ └── main.cpp └── qml │ ├── GridLayerCanvas.qml │ ├── HardwarePalette.js │ ├── ImageLoadingProxy.qml │ ├── const.js │ ├── main.qml │ ├── qml.qrc │ └── version.js └── testimages ├── Bernie-converted.png ├── Bernie-converted_bg.png ├── Bernie-converted_spr.png └── Bernie.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/.gitignore -------------------------------------------------------------------------------- /AppDir/usr/share/applications/OverlayPal.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/AppDir/usr/share/applications/OverlayPal.desktop -------------------------------------------------------------------------------- /AppDir/usr/share/icons/hicolor/128x128/apps/OverlayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/AppDir/usr/share/icons/hicolor/128x128/apps/OverlayPal.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/LICENSE -------------------------------------------------------------------------------- /OverlayPal.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/OverlayPal.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/README.pdf -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/appveyor.yml -------------------------------------------------------------------------------- /nespalettes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/nespalettes/README.md -------------------------------------------------------------------------------- /nespalettes/palgen.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/nespalettes/palgen.pal -------------------------------------------------------------------------------- /screenshots/Bernie-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/screenshots/Bernie-screenshot.png -------------------------------------------------------------------------------- /src/cmpl/FirstPass.cmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cmpl/FirstPass.cmpl -------------------------------------------------------------------------------- /src/cmpl/SecondPass.cmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cmpl/SecondPass.cmpl -------------------------------------------------------------------------------- /src/cpp/Array2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/Array2D.h -------------------------------------------------------------------------------- /src/cpp/Export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/Export.cpp -------------------------------------------------------------------------------- /src/cpp/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/Export.h -------------------------------------------------------------------------------- /src/cpp/GridLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/GridLayer.cpp -------------------------------------------------------------------------------- /src/cpp/GridLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/GridLayer.h -------------------------------------------------------------------------------- /src/cpp/HardwareColorsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/HardwareColorsModel.cpp -------------------------------------------------------------------------------- /src/cpp/HardwareColorsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/HardwareColorsModel.h -------------------------------------------------------------------------------- /src/cpp/ImageUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/ImageUtils.cpp -------------------------------------------------------------------------------- /src/cpp/ImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/ImageUtils.h -------------------------------------------------------------------------------- /src/cpp/OverlayOptimiser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/OverlayOptimiser.cpp -------------------------------------------------------------------------------- /src/cpp/OverlayOptimiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/OverlayOptimiser.h -------------------------------------------------------------------------------- /src/cpp/OverlayPalApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/OverlayPalApp.cpp -------------------------------------------------------------------------------- /src/cpp/OverlayPalApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/OverlayPalApp.h -------------------------------------------------------------------------------- /src/cpp/OverlayPalGuiBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/OverlayPalGuiBackend.cpp -------------------------------------------------------------------------------- /src/cpp/OverlayPalGuiBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/OverlayPalGuiBackend.h -------------------------------------------------------------------------------- /src/cpp/SimplePaletteModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/SimplePaletteModel.cpp -------------------------------------------------------------------------------- /src/cpp/SimplePaletteModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/SimplePaletteModel.h -------------------------------------------------------------------------------- /src/cpp/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/Sprite.cpp -------------------------------------------------------------------------------- /src/cpp/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/Sprite.h -------------------------------------------------------------------------------- /src/cpp/SubProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/SubProcess.cpp -------------------------------------------------------------------------------- /src/cpp/SubProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/SubProcess.h -------------------------------------------------------------------------------- /src/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/cpp/main.cpp -------------------------------------------------------------------------------- /src/qml/GridLayerCanvas.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/qml/GridLayerCanvas.qml -------------------------------------------------------------------------------- /src/qml/HardwarePalette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/qml/HardwarePalette.js -------------------------------------------------------------------------------- /src/qml/ImageLoadingProxy.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/qml/ImageLoadingProxy.qml -------------------------------------------------------------------------------- /src/qml/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/qml/const.js -------------------------------------------------------------------------------- /src/qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/qml/main.qml -------------------------------------------------------------------------------- /src/qml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/src/qml/qml.qrc -------------------------------------------------------------------------------- /src/qml/version.js: -------------------------------------------------------------------------------- 1 | .pragma library 2 | var VERSION_STRING = "dev-version"; 3 | -------------------------------------------------------------------------------- /testimages/Bernie-converted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/testimages/Bernie-converted.png -------------------------------------------------------------------------------- /testimages/Bernie-converted_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/testimages/Bernie-converted_bg.png -------------------------------------------------------------------------------- /testimages/Bernie-converted_spr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/testimages/Bernie-converted_spr.png -------------------------------------------------------------------------------- /testimages/Bernie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-iwaniec/OverlayPal/HEAD/testimages/Bernie.png --------------------------------------------------------------------------------