PiegOS/kernel/Helpers/memPrint.cpp

126 lines
2.3 KiB
C++
Raw Normal View History

2015-07-22 11:28:01 +04:00
#include "./memPrint.hpp"
2015-07-23 08:47:32 +04:00
2015-07-22 13:22:53 +04:00
//Constructor
2015-07-22 11:28:01 +04:00
memPrint::memPrint(){
2015-07-22 13:22:53 +04:00
2015-07-22 19:45:08 +04:00
//Initialise position
this->m_cursorX=0;
this->m_cursorY=0;
//Initialise color
this->setBackground(BLACK);
this->setForeground(WHITE);
2015-07-22 11:28:01 +04:00
}
2015-07-22 13:22:53 +04:00
//Destructor
2015-07-22 11:28:01 +04:00
memPrint::~memPrint(){
2015-07-22 13:22:53 +04:00
2015-07-22 11:28:01 +04:00
}
2015-07-22 19:45:08 +04:00
//Move cursor
void memPrint::updateCursor(){
2015-07-23 08:47:32 +04:00
//Update X axis
2015-07-22 19:45:08 +04:00
this->m_cursorX++;
2015-07-23 08:47:32 +04:00
//Check X value
if(this->m_cursorX >= MAXCURSORX){
//If X is out of the screen
2015-07-22 19:45:08 +04:00
this->m_cursorX=0;
2015-07-23 08:47:32 +04:00
//Update Y
2015-07-22 19:45:08 +04:00
this->m_cursorY++;
2015-07-23 08:47:32 +04:00
//Check Y value
if(this->m_cursorY >= MAXCURSORY){
//If Y is out of the screen
this->scrollUp(1);
//Decrease Y value
this->m_cursorY--;
2015-07-22 19:45:08 +04:00
}
}
}
2015-07-23 08:47:32 +04:00
//Change character background color
2015-07-22 19:45:08 +04:00
void memPrint::setBackground(colorBios color){
u8 newColor= (color << 4);
this->m_colors= newColor | ((this->m_colors << 4) >> 4);
}
2015-07-23 08:47:32 +04:00
//Change character color
2015-07-22 19:45:08 +04:00
void memPrint::setForeground(colorBios color){
u8 newColor= color;
this->m_colors= newColor | ((this->m_colors >> 4) << 4);
}
//Print a char
void memPrint::putChar(u8 character){
2015-07-23 08:47:32 +04:00
//Get the adresse with the cursor position
char *adress= ((char *) MEMPRINTSTARTADR) + (this->m_cursorX * 2) + (this->m_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++;
*adress=this->m_colors;
2015-07-23 08:47:32 +04:00
//Update cursor position
2015-07-22 19:45:08 +04:00
this->updateCursor();
}
2015-07-23 08:47:32 +04:00
//Print a char*
2015-07-22 19:45:08 +04:00
void memPrint::print(char *str){
while(*str!=0x0){
this->putChar(*str);
str++;
}
}
2015-07-23 08:47:32 +04:00
//Clear the screen
void memPrint::clear(){
this->scrollUp(MAXCURSORY);
}
//Scroll up "number" times
void memPrint::scrollUp(u8 number){
//Get number of adress (char & his attribute) to scroll
int nbAdrToScroll=number*MAXCURSORX*2;
//Scroll all of the characters and attributes
for(int i=0;i!=MAXCURSORX*2*MAXCURSORY;i++){
//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;
}
}