/* Loads a 80x48 (or 40x48) PNG image into a 40x48 Apple II layout */ /* It's not interleaved like an actual Apple II */ /* But the top/bottom are pre-packed into a naive 40x24 array */ #include #include #include #include #include #include #include #include #include "loadpng.h" static int convert_color(int color, char *filename) { int c=0; switch(color) { case 0x000000: c=0; break; /* black */ case 0xe31e60: c=1; break; /* magenta */ case 0x604ebd: c=2; break; /* dark blue */ case 0xff44fd: c=3; break; /* purple */ case 0x00a360: c=4; break; /* dark green */ case 0x9c9c9c: c=5; break; /* grey 1 */ case 0x14cffd: c=6; break; /* medium blue */ case 0xd0c3ff: c=7; break; /* light blue */ case 0x607203: c=8; break; /* brown */ case 0xff6a3c: c=9; break; /* orange */ case 0x9d9d9d: c=10; break; /* grey 2 */ case 0xffa0d0: c=11; break; /* pink */ case 0x14f53c: c=12; break; /* bright green */ case 0xd0dd8d: c=13; break; /* yellow */ case 0x72ffd0: c=14; break; /* aqua */ case 0xffffff: c=15; break; /* white */ default: fprintf(stderr,"Unknown color %x, file %s\n", color,filename); exit(-1); break; } return c; } /* expects a PNG where the xsize is either 1280x200 */ int loadpng(char *filename, unsigned char **image_ptr, int *xsize, int *ysize, int png_type) { int x,y,ystart,yadd,xadd; int color; FILE *infile; int debug=0; unsigned char *image,*out_ptr; int width, height; int a2_color; png_byte bit_depth; png_structp png_ptr; png_infop info_ptr; png_bytep *row_pointers; png_byte color_type; unsigned char header[8]; /* open file and test for it being a png */ infile = fopen(filename, "rb"); if (infile==NULL) { fprintf(stderr,"Error! Could not open %s\n",filename); return -1; } /* Check the header */ fread(header, 1, 8, infile); if (png_sig_cmp(header, 0, 8)) { fprintf(stderr,"Error! %s is not a PNG file\n",filename); return -1; } /* initialize stuff */ png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if (!png_ptr) { fprintf(stderr,"Error create_read_struct\n"); exit(-1); } info_ptr = png_create_info_struct(png_ptr); if (!info_ptr) { fprintf(stderr,"Error png_create_info_struct\n"); exit(-1); } png_init_io(png_ptr, infile); png_set_sig_bytes(png_ptr, 8); png_read_info(png_ptr, info_ptr); width = png_get_image_width(png_ptr, info_ptr); height = png_get_image_height(png_ptr, info_ptr); if (width==1280) { *xsize=1280; xadd=1; } else { fprintf(stderr,"Unsupported width %d\n",width); return -1; } if (png_type==PNG_WHOLETHING) { *ysize=height; ystart=0; yadd=1; } else { fprintf(stderr,"Unknown type\n"); return -1; } color_type = png_get_color_type(png_ptr, info_ptr); bit_depth = png_get_bit_depth(png_ptr, info_ptr); if (debug) { printf("PNG: width=%d height=%d depth=%d\n",width,height,bit_depth); if (color_type==PNG_COLOR_TYPE_RGB) printf("Type RGB\n"); else if (color_type==PNG_COLOR_TYPE_RGB_ALPHA) printf("Type RGBA\n"); else if (color_type==PNG_COLOR_TYPE_PALETTE) printf("Type palette\n"); printf("Generating output size %d x %d\n",*xsize,*ysize); } // number_of_passes = png_set_interlace_handling(png_ptr); png_read_update_info(png_ptr, info_ptr); row_pointers = (png_bytep*) malloc(sizeof(png_bytep) * height); for (y=0; y>4); } a2_color&=0xf; // /* bottom color */ // color=row_pointers[y+(yadd/2)][x/2]; // if (x%2==0) { // color=(color>>4); // } // color&=0xf; // a2_color|=(color<<4); if (debug) { printf("%x ",a2_color); } *out_ptr=a2_color; out_ptr++; } } if (debug) printf("\n"); } } else { printf("Unknown color type\n"); } *image_ptr=image; return 0; }