Big background problem
Posted: Tue Oct 18, 2011 10:41 am
I have a problem with my background on the Nintendo DS.
I've a BG which has a resolution of 952x192. The goal is to scroll this image so that you can read it on the Nintendo DS.
What the problem is, I can't get the BG image copied to the buffer. I also have an image that is 256x192 which I can load perfectly to the buffer, and I can scroll it. But with the bigger image I can't get it done.
I have 2 bitmaps, the COMICBMP which is the image that i want to have in my app. And the HSDRAWBMP, which is the 256x192 bitmap.
This is my main code:
If I run this code, i get this:

Can someone help me out?
I've a BG which has a resolution of 952x192. The goal is to scroll this image so that you can read it on the Nintendo DS.
What the problem is, I can't get the BG image copied to the buffer. I also have an image that is 256x192 which I can load perfectly to the buffer, and I can scroll it. But with the bigger image I can't get it done.
I have 2 bitmaps, the COMICBMP which is the image that i want to have in my app. And the HSDRAWBMP, which is the 256x192 bitmap.
This is my main code:
Code: Select all
#include "comic.h"
void create_buffers()
{
main_buffer = (Color*)calloc(SCREEN_PIXEL_COUNT, sizeof(Color));
//sub_buffer = (Color*)calloc(SCREEN_PIXEL_COUNT, sizeof(Color));
}
void init_displays()
{
// Enable both screens for 2D graphics
powerOn(POWER_2D_A);
powerOn(POWER_2D_B);
// Enable VBLANK interrupt
irqEnable(IRQ_VBLANK);
// Set up main screen (mode 5 -> two bitmap layers)
REG_DISPCNT = MODE_5_2D | DISPLAY_BG3_ACTIVE;
// Map memory banks to the screens
VRAM_A_CR = VRAM_ENABLE | VRAM_A_MAIN_BG;
//VRAM_C_CR = VRAM_ENABLE | VRAM_C_SUB_BG;
// Main screen on the bottem
lcdMainOnBottom();
}
/*
void init_backgrounds()
{
// Main screen background (16 bit bitmap -> 256x256 pixels)
REG_BG3CNT = BG_BMP16_256x256 | BG_BMP_BASE(0) | BG_PRIORITY(1);
// Set background: no scaling, rotation and offset
REG_BG3PA = (1 << 8); // Scale X (1.0 = 0)
REG_BG3PB = 0; // X rotation
REG_BG3PC = 0; // Y rotation
REG_BG3PD = (1 << 8); // Scale Y (1.0 = 0)
REG_BG3X = 0; // X position
REG_BG3Y = 0; // Y position
}
*/
void init_video()
{
init_displays();
//init_backgrounds();
create_buffers();
}
void copy_comic_to_buffer(Comic* comic, Color* buffer)
{
dmaCopy(comic->image, buffer, BACKGROUND_SIZE_COMIC);
}
void scroll_comic(Comic* comic, u8 speed)
{
// Main screen background (16 bit bitmap -> 256x256 pixels)
REG_BG3CNT = BG_BMP16_256x256 | BG_BMP_BASE(4) | BG_PRIORITY(1);
// Set background: no scaling, rotation and offset
REG_BG3PA = (1 << 8); // Scale X (1.0 = 0)
REG_BG3PB = 0; // X rotation
REG_BG3PC = 0; // Y rotation
REG_BG3PD = (1 << 8); // Scale Y (1.0 = 0)
REG_BG3X = comic->offset_x; // X position
REG_BG3Y = 0; // Y position
comic->offset_x = comic->offset_x + speed*2;
int i = 0;
for(i=0; i<3; i++)
{
swiWaitForVBlank();
}
}
int main()
{
consoleDemoInit();
Comic comic1 = {COMICBMP, 952, 0};
init_video();
copy_comic_to_buffer(&comic1, MAIN_BACKGROUND);
while(1)
{
//copy_comic_to_buffer(&comic1, MAIN_BACKGROUND);
scroll_comic(&comic1, 128);
}
return 0;
}

Can someone help me out?