Welcome to the DevBlag!
May 29th, 2008Yeah, yet another development blag. I’m gonna keep updating this blog with my programming projects
Right now I only have one project on the making: DSGCalc. It is supposed to be a graphic calculator for the nintendo DS, which includes features like zooming with the touchscreen. The first version is almost done, here you have a demo video.
I’m also going to upload an utility program that I made to work with 4bpp palette indexed BMPs which I had to develop in order to make the DSGCalc font work like I wanted. It’s called BMPColorSwapper and does exactly that: rearranges the colors of a 4bpp BMP in a specific order. Use it with the following syntax:
bmpcolorswapper input_filepath output_filepath color_list
Where color_list is a comma-separated list of hex RGB values (e.g. 0×0015FF) which has the colors in the order that they should appear in the result BMP (note that not all the colors have to be listed).
Get BMPColorSwapper here. Its source can be found here (the project was made using devcpp).