Implement memPrint methods
This commit is contained in:
parent
81d1351c73
commit
aac010a9e3
4 changed files with 77 additions and 21 deletions
0
kernel/Helpers/globalVars.hpp
Normal file
0
kernel/Helpers/globalVars.hpp
Normal file
|
@ -1,5 +1,7 @@
|
||||||
#include "./memPrint.hpp"
|
#include "./memPrint.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//Constructor
|
//Constructor
|
||||||
memPrint::memPrint(){
|
memPrint::memPrint(){
|
||||||
|
|
||||||
|
@ -21,14 +23,28 @@ memPrint::~memPrint(){
|
||||||
|
|
||||||
//Move cursor
|
//Move cursor
|
||||||
void memPrint::updateCursor(){
|
void memPrint::updateCursor(){
|
||||||
|
|
||||||
|
|
||||||
|
//Update X axis
|
||||||
this->m_cursorX++;
|
this->m_cursorX++;
|
||||||
|
|
||||||
if(this->m_cursorX > MAXCURSORX){
|
//Check X value
|
||||||
|
if(this->m_cursorX >= MAXCURSORX){
|
||||||
|
|
||||||
|
//If X is out of the screen
|
||||||
this->m_cursorX=0;
|
this->m_cursorX=0;
|
||||||
|
|
||||||
|
//Update Y
|
||||||
this->m_cursorY++;
|
this->m_cursorY++;
|
||||||
|
|
||||||
if(this->m_cursorY > MAXCURSORY){
|
//Check Y value
|
||||||
//Scroll screen
|
if(this->m_cursorY >= MAXCURSORY){
|
||||||
|
|
||||||
|
//If Y is out of the screen
|
||||||
|
this->scrollUp(1);
|
||||||
|
|
||||||
|
//Decrease Y value
|
||||||
|
this->m_cursorY--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -37,35 +53,73 @@ void memPrint::updateCursor(){
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Change character background color
|
||||||
void memPrint::setBackground(colorBios color){
|
void memPrint::setBackground(colorBios color){
|
||||||
u8 newColor= (color << 4);
|
u8 newColor= (color << 4);
|
||||||
this->m_colors= newColor | ((this->m_colors << 4) >> 4);
|
this->m_colors= newColor | ((this->m_colors << 4) >> 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Change character color
|
||||||
void memPrint::setForeground(colorBios color){
|
void memPrint::setForeground(colorBios color){
|
||||||
u8 newColor= color;
|
u8 newColor= color;
|
||||||
this->m_colors= newColor | ((this->m_colors >> 4) << 4);
|
this->m_colors= newColor | ((this->m_colors >> 4) << 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Print a char
|
//Print a char
|
||||||
|
|
||||||
void memPrint::putChar(u8 character){
|
void memPrint::putChar(u8 character){
|
||||||
|
|
||||||
char *adress= ((char *) MEMPRINTSTARTADR) + (this->m_cursorX * 2) + (this->m_cursorY * 80 * 2);
|
//Get the adresse with the cursor position
|
||||||
|
char *adress= ((char *) MEMPRINTSTARTADR) + (this->m_cursorX * 2) + (this->m_cursorY * MAXCURSORX * 2);
|
||||||
|
|
||||||
|
//Copy the character
|
||||||
*adress=character;
|
*adress=character;
|
||||||
|
|
||||||
|
//Copy his attribute
|
||||||
adress++;
|
adress++;
|
||||||
|
|
||||||
*adress=this->m_colors;
|
*adress=this->m_colors;
|
||||||
|
|
||||||
|
//Update cursor position
|
||||||
this->updateCursor();
|
this->updateCursor();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//Print a char*
|
||||||
void memPrint::print(char *str){
|
void memPrint::print(char *str){
|
||||||
while(*str!=0x0){
|
while(*str!=0x0){
|
||||||
this->putChar(*str);
|
this->putChar(*str);
|
||||||
str++;
|
str++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//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;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -8,6 +8,9 @@
|
||||||
#define MAXCURSORX 80
|
#define MAXCURSORX 80
|
||||||
#define MAXCURSORY 25
|
#define MAXCURSORY 25
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//Define the bios color
|
//Define the bios color
|
||||||
enum colorBios{
|
enum colorBios{
|
||||||
|
|
||||||
|
@ -67,6 +70,12 @@ class memPrint{
|
||||||
//Print
|
//Print
|
||||||
void print(char *str);
|
void print(char *str);
|
||||||
|
|
||||||
|
//Scroll up
|
||||||
|
void scrollUp(u8 number);
|
||||||
|
|
||||||
|
//Clear screen
|
||||||
|
void clear();
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -3,24 +3,17 @@
|
||||||
#include "./Helpers/memPrint.hpp"
|
#include "./Helpers/memPrint.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
//----- Global Definition -----
|
||||||
|
memPrint VideoRam; //Used to print data on screen
|
||||||
|
//-----------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//----- PiegOS kernel main -----
|
//----- PiegOS kernel main -----
|
||||||
int main(){
|
int main(){
|
||||||
|
|
||||||
//Test print a char
|
//Welcome
|
||||||
/*char* letter=(char*)0xB8A00;
|
VideoRam.print("Welcome to PiegOS");
|
||||||
*letter='H';
|
|
||||||
letter++;
|
|
||||||
*letter=(GREEN << 4) | BLUE;*/
|
|
||||||
|
|
||||||
memPrint VideoRam;
|
|
||||||
|
|
||||||
|
|
||||||
VideoRam.print("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
|
||||||
VideoRam.print("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
|
||||||
VideoRam.print("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
|
||||||
VideoRam.print("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
|
||||||
VideoRam.print("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
|
||||||
VideoRam.print("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
|
|
||||||
|
|
||||||
//Infinite loop
|
//Infinite loop
|
||||||
while(1);
|
while(1);
|
||||||
|
|
Loading…
Add table
Reference in a new issue