PiegOS/kernel/Helpers/memprint.c

112 lines
2.2 KiB
C
Raw Normal View History

2015-07-28 14:19:00 +04:00
#include "./memprint.h"
2015-07-22 11:28:01 +04:00
2015-07-28 14:19:00 +04:00
//Define global vars
u8 MEMPRINT_CURSORX=0;
u8 MEMPRINT_CURSORY=0;
u8 MEMPRINT_COLORS=0x0F;
2015-07-23 08:47:32 +04:00
2015-07-22 19:45:08 +04:00
//Move cursor
2015-07-28 14:19:00 +04:00
void memprint_updateCursor(){
2015-07-23 08:47:32 +04:00
//Update X axis
2015-07-28 14:19:00 +04:00
MEMPRINT_CURSORX++;
2015-07-22 19:45:08 +04:00
2015-07-23 08:47:32 +04:00
//Check X value
2015-07-28 14:19:00 +04:00
if(MEMPRINT_CURSORX >= MAXCURSORX){
2015-07-23 08:47:32 +04:00
//If X is out of the screen
2015-07-28 14:19:00 +04:00
MEMPRINT_CURSORX=0;
2015-07-23 08:47:32 +04:00
//Update Y
2015-07-28 14:19:00 +04:00
MEMPRINT_CURSORY++;
2015-07-22 19:45:08 +04:00
2015-07-23 08:47:32 +04:00
//Check Y value
2015-07-28 14:19:00 +04:00
if(MEMPRINT_CURSORY > MAXCURSORY){
2015-07-23 08:47:32 +04:00
//If Y is out of the screen
2015-07-28 14:19:00 +04:00
memprint_scrollUp(1);
2015-07-23 08:47:32 +04:00
//Decrease Y value
2015-07-28 14:19:00 +04:00
MEMPRINT_CURSORY--;
2015-07-22 19:45:08 +04:00
}
}
}
2015-07-23 08:47:32 +04:00
//Change character background color
2015-07-28 14:19:00 +04:00
void memprint_setBackground(colorBios color){
2015-07-22 19:45:08 +04:00
u8 newColor= (color << 4);
2015-07-28 14:19:00 +04:00
MEMPRINT_COLORS= newColor | ((MEMPRINT_COLORS << 4) >> 4);
2015-07-22 19:45:08 +04:00
}
2015-07-23 08:47:32 +04:00
//Change character color
2015-07-28 14:19:00 +04:00
void memprint_setForeground(colorBios color){
2015-07-22 19:45:08 +04:00
u8 newColor= color;
2015-07-28 14:19:00 +04:00
MEMPRINT_COLORS= newColor | ((MEMPRINT_COLORS >> 4) << 4);
2015-07-22 19:45:08 +04:00
}
//Print a char
2015-07-28 14:19:00 +04:00
void memprint_putChar(u8 character){
2015-07-22 19:45:08 +04:00
2015-07-23 08:47:32 +04:00
//Get the adresse with the cursor position
2015-07-28 14:19:00 +04:00
char *adress= ((char *) MEMPRINTSTARTADR) + (MEMPRINT_CURSORX * 2) + (MEMPRINT_CURSORY * MAXCURSORX * 2);
2015-07-22 19:45:08 +04:00
2015-07-23 08:47:32 +04:00
//Copy the character
2015-07-22 19:45:08 +04:00
*adress=character;
2015-07-23 08:47:32 +04:00
//Copy his attribute
2015-07-22 19:45:08 +04:00
adress++;
2015-07-28 14:19:00 +04:00
*adress=MEMPRINT_COLORS;
2015-07-22 19:45:08 +04:00
2015-07-23 08:47:32 +04:00
//Update cursor position
2015-07-28 14:19:00 +04:00
memprint_updateCursor();
2015-07-22 19:45:08 +04:00
}
2015-07-23 08:47:32 +04:00
//Print a char*
2015-07-28 14:19:00 +04:00
void memprint_print(char *str){
2015-07-22 19:45:08 +04:00
while(*str!=0x0){
2015-07-28 14:19:00 +04:00
memprint_putChar(*str);
2015-07-22 19:45:08 +04:00
str++;
}
}
2015-07-23 08:47:32 +04:00
//Clear the screen
2015-07-28 14:19:00 +04:00
void memprint_clear(){
memprint_scrollUp(MAXCURSORY);
2015-07-23 08:47:32 +04:00
}
//Scroll up "number" times
2015-07-28 14:19:00 +04:00
void memprint_scrollUp(u8 number){
2015-07-23 08:47:32 +04:00
//Get number of adress (char & his attribute) to scroll
int nbAdrToScroll=number*MAXCURSORX*2;
2015-07-28 14:19:00 +04:00
int i=0;
2015-07-23 08:47:32 +04:00
//Scroll all of the characters and attributes
2015-07-28 14:19:00 +04:00
for(i;i!=MAXCURSORX*2*MAXCURSORY;i++){
2015-07-23 08:47:32 +04:00
//Get source character or attribute
char* source=(((char *)MEMPRINTSTARTADR) + i);
//Get destination character or attribute
char* dest=source-nbAdrToScroll;
//Check if destination is out of the screen
if(dest >= (char *)MEMPRINTSTARTADR)
*dest=*source;
//Remove data from source
*source=0x0;
}
}