Typically most hardware frame-buffers, such as the VGA frame buffer, have a hardware scrolling capability. Not only that, but some frame-buffers (not the VGA-character console unfortunately) will "wrap-around", meaning when you write to the last byte (or bits) of the frame-buffer, and then write again to the first bytes (or bits) of the frame-buffer, those bytes will appear in the hardware as the next line on the screen. So there are a couple things you can do:
- Use the hardware scrolling capabilities of your frame-buffer to scroll to the next line when you get done. This means that you will first clear the next line of the frame-buffer, write the character that you need to on that line, and then increment the frame-buffer starting line pointer by one. This will then "appear" as though the frame-buffer has scrolled down a single line. When you get to the end of the frame buffer's memory, keep the same process going, but the next line you'll clear will be the first line in memory of the frame-buffer. You'll then keep incrementing the starting address of the frame-buffer (this is still pointing somewhere near the end of the frame-buffer's memory) until that too is pointing to the last line in memory of the frame-buffer, at which point you'll then wrap around to the first line in memory.
- If your frame-buffer is still multi-page, but does not have a wrap-around capability (like the VGA character console), then keep a pointer to the start of the frame-buffer, and when you get to the last "page" in memory, use
memcpy() to copy the last page in memory into the first page of the frame-buffer in memory ... Once you've done that step, keep up the same page-scrolling routine where you clear the next line, and then increment the starting line pointer of the frame-buffer to give the illusion of scrolling up a single line. The page-copy will be a little slower than all the other hardware page-scrolls used up to that point, but memcpy() is very efficient, especially if you copy multiple bytes at a time using a larger memory-type like a long rather than a char.
Next, as far as your access function fb_set_px goes, I would 1) make it inline inside a header file so that you avoid the overhead of an actual function call that requires using the stack to setup an activation frame, and 2) you could use the fact that your frame-buffer is just a memory array to actually map an array of pointers to some struct type that represents the per-character data layout of to your frame_buffer (i.e., some frame-buffers have a byte for a character and another byte for some type of attribute like color, etc. applied to the character). So for instance, you could do the following:
typedef struct frame_buffer_t
{
unsigned char character;
unsigned char attributes;
//add or omit any fields that describe your frame-buffer data-layout
} __attribute__((packed)) frame_buffer_t;
//define as global variable
//make volatile to avoid any compiler re-ordering
unsigned volatile frame_buffer_t* framebuffer[MAX_ROWS_IN_FRAMEBUFFER];
int main()
{
unsigned volatile frame_buffer_t* temp = global_frame_buffer_start_ptr;
for (int i=0; i < MAX_ROWS_IN_FRAMEBUFFER; i++)
{
framebuffer[i] = temp;
temp += NUM_COLUMNS;
}
//... more code
}
Now you can simply address a x,y position in your frame-buffer as
framebuffer[Y_POS][X_POS].character = SOME_VALUE;