├── .github └── workflows │ ├── c-cpp.yml │ └── release.yml ├── .gitignore ├── INFOS.txt ├── License.txt ├── README ├── data.qrc ├── dialog_about.cpp ├── dialog_about.h ├── dialog_about.ui ├── dialogcompress.cpp ├── dialogcompress.h ├── dialogcompress.ui ├── doc ├── images │ ├── CS_palette_hack.png │ ├── back.png │ ├── byte_align.png │ ├── ctct.png │ ├── dump_0x10341_3bpp.png │ ├── dump_0x10341_3bpp_new.png │ ├── icon.png │ ├── interface.png │ ├── interface_mini.png │ ├── ok_align.png │ ├── originals │ │ ├── Screenshot-Master Tile Converter-2.png │ │ ├── Screenshot-Master Tile Converter-3.png │ │ ├── Screenshot-Master Tile Converter-4.png │ │ ├── Screenshot-Master Tile Converter-5.png │ │ ├── Screenshot-Master Tile Converter-6.png │ │ ├── Screenshot-Master Tile Converter-7.png │ │ ├── back.png │ │ ├── interface.png │ │ └── interface.svg │ ├── row_align.png │ ├── screen1.png │ ├── screen_align.png │ ├── screen_align_correct.png │ └── sign_am1.png ├── index.html └── mastertileconverter.css ├── ex ├── AlexKidd_japan_2_EloKidd.bspatch ├── Alex_Palette ├── eat │ ├── eat_compr.dat │ ├── eat_final_16coul.bmp │ ├── infos.txt │ └── mange_travail_16coul.bmp ├── hacks.txt ├── title │ ├── infos.txt │ ├── title.bmp │ ├── title_compr.dat │ └── titre_travail.png └── uncompressed │ ├── dump_0x10341_3bpp.BMP │ ├── dump_0x10341_3bpp_new.BMP │ ├── dump_0x1c069_4bpp.BMP │ ├── dump_0x1c069_4bpp_NEW.BMP │ ├── dump_0x1d349_4bpp.BMP │ └── dump_0x1d349_4bpp_new_coeur.BMP ├── icon.png ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── mastertileconverter.pro ├── mtcproject.cpp ├── mtcproject.h ├── palette.cpp ├── palette.h ├── palettewidget.cpp ├── palettewidget.h ├── rom.cpp ├── rom.h ├── simple_version ├── empty.png └── read_sms.py ├── system.cpp ├── system.h ├── system_SMS.cpp ├── system_SMS.h ├── system_unknown.cpp ├── system_unknown.h ├── tile.cpp ├── tile.h ├── tileswidget.cpp ├── tileswidget.h ├── zoomwidget.cpp └── zoomwidget.h /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/.gitignore -------------------------------------------------------------------------------- /INFOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/INFOS.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/License.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/README -------------------------------------------------------------------------------- /data.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/data.qrc -------------------------------------------------------------------------------- /dialog_about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/dialog_about.cpp -------------------------------------------------------------------------------- /dialog_about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/dialog_about.h -------------------------------------------------------------------------------- /dialog_about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/dialog_about.ui -------------------------------------------------------------------------------- /dialogcompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/dialogcompress.cpp -------------------------------------------------------------------------------- /dialogcompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/dialogcompress.h -------------------------------------------------------------------------------- /dialogcompress.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/dialogcompress.ui -------------------------------------------------------------------------------- /doc/images/CS_palette_hack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/CS_palette_hack.png -------------------------------------------------------------------------------- /doc/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/back.png -------------------------------------------------------------------------------- /doc/images/byte_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/byte_align.png -------------------------------------------------------------------------------- /doc/images/ctct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/ctct.png -------------------------------------------------------------------------------- /doc/images/dump_0x10341_3bpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/dump_0x10341_3bpp.png -------------------------------------------------------------------------------- /doc/images/dump_0x10341_3bpp_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/dump_0x10341_3bpp_new.png -------------------------------------------------------------------------------- /doc/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/icon.png -------------------------------------------------------------------------------- /doc/images/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/interface.png -------------------------------------------------------------------------------- /doc/images/interface_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/interface_mini.png -------------------------------------------------------------------------------- /doc/images/ok_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/ok_align.png -------------------------------------------------------------------------------- /doc/images/originals/Screenshot-Master Tile Converter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/originals/Screenshot-Master Tile Converter-2.png -------------------------------------------------------------------------------- /doc/images/originals/Screenshot-Master Tile Converter-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/originals/Screenshot-Master Tile Converter-3.png -------------------------------------------------------------------------------- /doc/images/originals/Screenshot-Master Tile Converter-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/originals/Screenshot-Master Tile Converter-4.png -------------------------------------------------------------------------------- /doc/images/originals/Screenshot-Master Tile Converter-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/originals/Screenshot-Master Tile Converter-5.png -------------------------------------------------------------------------------- /doc/images/originals/Screenshot-Master Tile Converter-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/originals/Screenshot-Master Tile Converter-6.png -------------------------------------------------------------------------------- /doc/images/originals/Screenshot-Master Tile Converter-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/originals/Screenshot-Master Tile Converter-7.png -------------------------------------------------------------------------------- /doc/images/originals/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/originals/back.png -------------------------------------------------------------------------------- /doc/images/originals/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/originals/interface.png -------------------------------------------------------------------------------- /doc/images/originals/interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/originals/interface.svg -------------------------------------------------------------------------------- /doc/images/row_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/row_align.png -------------------------------------------------------------------------------- /doc/images/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/screen1.png -------------------------------------------------------------------------------- /doc/images/screen_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/screen_align.png -------------------------------------------------------------------------------- /doc/images/screen_align_correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/screen_align_correct.png -------------------------------------------------------------------------------- /doc/images/sign_am1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/images/sign_am1.png -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/mastertileconverter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/doc/mastertileconverter.css -------------------------------------------------------------------------------- /ex/AlexKidd_japan_2_EloKidd.bspatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/AlexKidd_japan_2_EloKidd.bspatch -------------------------------------------------------------------------------- /ex/Alex_Palette: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/Alex_Palette -------------------------------------------------------------------------------- /ex/eat/eat_compr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/eat/eat_compr.dat -------------------------------------------------------------------------------- /ex/eat/eat_final_16coul.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/eat/eat_final_16coul.bmp -------------------------------------------------------------------------------- /ex/eat/infos.txt: -------------------------------------------------------------------------------- 1 | 44 tiles @ FB6A 2 | -------------------------------------------------------------------------------- /ex/eat/mange_travail_16coul.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/eat/mange_travail_16coul.bmp -------------------------------------------------------------------------------- /ex/hacks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/hacks.txt -------------------------------------------------------------------------------- /ex/title/infos.txt: -------------------------------------------------------------------------------- 1 | 198 tiles @ 13332 2 | -------------------------------------------------------------------------------- /ex/title/title.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/title/title.bmp -------------------------------------------------------------------------------- /ex/title/title_compr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/title/title_compr.dat -------------------------------------------------------------------------------- /ex/title/titre_travail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/title/titre_travail.png -------------------------------------------------------------------------------- /ex/uncompressed/dump_0x10341_3bpp.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/uncompressed/dump_0x10341_3bpp.BMP -------------------------------------------------------------------------------- /ex/uncompressed/dump_0x10341_3bpp_new.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/uncompressed/dump_0x10341_3bpp_new.BMP -------------------------------------------------------------------------------- /ex/uncompressed/dump_0x1c069_4bpp.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/uncompressed/dump_0x1c069_4bpp.BMP -------------------------------------------------------------------------------- /ex/uncompressed/dump_0x1c069_4bpp_NEW.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/uncompressed/dump_0x1c069_4bpp_NEW.BMP -------------------------------------------------------------------------------- /ex/uncompressed/dump_0x1d349_4bpp.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/uncompressed/dump_0x1d349_4bpp.BMP -------------------------------------------------------------------------------- /ex/uncompressed/dump_0x1d349_4bpp_new_coeur.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/ex/uncompressed/dump_0x1d349_4bpp_new_coeur.BMP -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/icon.png -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /mastertileconverter.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/mastertileconverter.pro -------------------------------------------------------------------------------- /mtcproject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/mtcproject.cpp -------------------------------------------------------------------------------- /mtcproject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/mtcproject.h -------------------------------------------------------------------------------- /palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/palette.cpp -------------------------------------------------------------------------------- /palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/palette.h -------------------------------------------------------------------------------- /palettewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/palettewidget.cpp -------------------------------------------------------------------------------- /palettewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/palettewidget.h -------------------------------------------------------------------------------- /rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/rom.cpp -------------------------------------------------------------------------------- /rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/rom.h -------------------------------------------------------------------------------- /simple_version/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/simple_version/empty.png -------------------------------------------------------------------------------- /simple_version/read_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/simple_version/read_sms.py -------------------------------------------------------------------------------- /system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/system.cpp -------------------------------------------------------------------------------- /system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/system.h -------------------------------------------------------------------------------- /system_SMS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/system_SMS.cpp -------------------------------------------------------------------------------- /system_SMS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/system_SMS.h -------------------------------------------------------------------------------- /system_unknown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/system_unknown.cpp -------------------------------------------------------------------------------- /system_unknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/system_unknown.h -------------------------------------------------------------------------------- /tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/tile.cpp -------------------------------------------------------------------------------- /tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/tile.h -------------------------------------------------------------------------------- /tileswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/tileswidget.cpp -------------------------------------------------------------------------------- /tileswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/tileswidget.h -------------------------------------------------------------------------------- /zoomwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/zoomwidget.cpp -------------------------------------------------------------------------------- /zoomwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmimu/Master-Tile-Converter/HEAD/zoomwidget.h --------------------------------------------------------------------------------