Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
MuppetHunt/VGA256Term.cpp
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
189 lines (166 sloc)
6.42 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Copyright (C) 2021 William Welna (wwelna@occultusterra.com) | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is | |
| * furnished to do so, subject to the following conditions: | |
| * | |
| * The above copyright notice and this permission notice shall be included in | |
| * all copies or substantial portions of the Software. | |
| * | |
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
| * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
| * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
| * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
| * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
| * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
| * THE SOFTWARE. | |
| */ | |
| #include "headers.hpp" | |
| #include "font8x8_basic.h" | |
| #define SCREEN_WIDTH 320 | |
| #define SCREEN_HEIGHT 200 | |
| #define GLYPH_SIZE 8 | |
| #define TERM_WIDTH 40 | |
| #define TERM_HEIGHT 25 | |
| #define VGA256 0x13 | |
| #define TEXT_MODE 0x03 | |
| /* | |
| inline void put_pixel(int x, int y, unsigned char color) { // Not used anymore :'( | |
| VGA[((y<<8)+(y<<6))+x] = color; | |
| } */ | |
| VGA256Term::VGA256Term() { | |
| this->video_buffer = (unsigned char far *)0xA0000000L; | |
| this->term_x = 0; | |
| this->term_y = 0; | |
| this->Set_Video_Mode(VGA256); | |
| this->clear_screen(15); // 15 = White | |
| // Make sure this stuff is clear | |
| memset(this->term_buff, 0, TERM_WIDTH*TERM_HEIGHT); | |
| memset(this->term_buff2, 0, TERM_WIDTH*TERM_HEIGHT); | |
| } | |
| void VGA256Term::print_char(char c, int x1, int y1, char color, char bgcolor) { | |
| int x,y; | |
| char *glyph; | |
| if(c == 0) glyph = (char *)font8x8_basic[0]; | |
| else glyph = (char *)font8x8_basic[c-32]; | |
| for(y=0; y < GLYPH_SIZE; ++y) | |
| for(x=0; x < GLYPH_SIZE; ++x) | |
| if(glyph[y] & (1 << x)) | |
| this->video_buffer[(((y1+y)<<8)+((y1+y)<<6))+(x1+x)] = color; | |
| else | |
| this->video_buffer[(((y1+y)<<8)+((y1+y)<<6))+(x1+x)] = bgcolor; | |
| } | |
| void VGA256Term::draw_term() { | |
| int x,y; | |
| for(y=0; y < TERM_HEIGHT; ++y) | |
| for(x=0; x < TERM_WIDTH; ++x) | |
| if(this->term_buff2[x][y] != this->term_buff[x][y]) | |
| this->print_char(this->term_buff[x][y], x*GLYPH_SIZE, y*GLYPH_SIZE, 0, 15); // 0 = Black, 15 = White | |
| memcpy(this->term_buff2, this->term_buff, TERM_WIDTH*TERM_HEIGHT); | |
| } | |
| void VGA256Term::term_newline() { | |
| unsigned int x, y; | |
| if(this->term_y >= TERM_HEIGHT-1) { | |
| for(y=1; y < TERM_HEIGHT; ++y) | |
| for(x=0; x < TERM_WIDTH; ++x) // Move everything up by 1, erasing the first line | |
| this->term_buff[x][y-1] = this->term_buff[x][y]; | |
| for(x=0; x < TERM_WIDTH; ++x) // clear last line | |
| this->term_buff[x][TERM_HEIGHT-1] = 0; | |
| this->term_y = TERM_HEIGHT-1; | |
| } else this->term_y += 1; | |
| term_x = 0; // Back to start | |
| } | |
| void VGA256Term::move_cursor_offset(unsigned int x, unsigned int y) { | |
| if( (this->term_x + x) < TERM_WIDTH && (this->term_y + y) < TERM_HEIGHT) { | |
| this->term_x += x; | |
| this->term_y += y; | |
| } | |
| } | |
| void VGA256Term::printf_term(char *s, ...) { | |
| char buffer[8]; // Shouldn't have a number longer than 7 digits... | |
| unsigned int x=0; | |
| unsigned int arg_stack_count=0; | |
| unsigned int arg_int; | |
| va_list ap; | |
| while(*(s+x) != 0) { | |
| if(*(s+x) == '%') arg_stack_count += 1; | |
| ++x; | |
| } | |
| va_start(ap, s); | |
| for(x=0; *(s+x) != 0; ++x) { | |
| if(*(s+x) == '\n') | |
| this->term_newline(); | |
| else if(*(s+x) == '\t') | |
| this->move_cursor_offset(3, 0); // 3 space tabs | |
| else if(*(s+x) == '%') { // Print decimal | |
| arg_int = va_arg(ap, int); | |
| memset(buffer, 0, 8); | |
| itoa(arg_int, buffer, 10); | |
| this->printf_term(buffer); // recursive call to print string sequence | |
| } else if(this->term_x < TERM_WIDTH && this->term_y < TERM_HEIGHT) { // Within bounds | |
| this->term_buff[this->term_x][this->term_y] = *(s+x); | |
| this->term_x += 1; | |
| } else if(this->term_x > TERM_WIDTH) { // do screen wrap, also does not work for some reason | |
| this->term_newline(); | |
| this->term_buff[this->term_x][this->term_y] = *(s+x); | |
| this->term_x += 1; | |
| } | |
| } | |
| va_end(ap); | |
| this->draw_term(); | |
| } | |
| void VGA256Term::printchar_term(char c) { | |
| if(this->term_x < TERM_WIDTH && this->term_y < TERM_HEIGHT) { | |
| this->term_buff[this->term_x][this->term_y] = c; | |
| this->term_x += 1; | |
| } else if (this->term_x > TERM_WIDTH) { // screen wrap, also does not work for some reason | |
| this->term_newline(); | |
| this->term_buff[this->term_x][this->term_y] = c; | |
| this->term_x += 1; | |
| } | |
| } | |
| int VGA256Term::get_int() { // Will break on long number input | |
| char c; | |
| int ret=0; | |
| int start_x = this->term_x; | |
| while ((c=getch()) != '\r') | |
| if(c < 58 && c > 47) { | |
| //ret = ((ret << 3) + (ret << 1)) + (c-48); | |
| this->printchar_term(c); this->draw_term(); | |
| } else if (c == '\b') { | |
| if(start_x < this->term_x) { | |
| this->move_cursor_offset(-1, 0); | |
| this->term_buff[this->term_x][this->term_y] = 0; | |
| this->draw_term(); | |
| } | |
| } | |
| for(; this->term_x > start_x; ++start_x) | |
| ret = ((ret << 3) + (ret << 1)) + (this->term_buff[start_x][this->term_y]-48); | |
| this->term_newline(); | |
| return ret; | |
| } | |
| void VGA256Term::clear_screen(unsigned char color) { | |
| _fmemset(this->video_buffer, color, SCREEN_WIDTH*SCREEN_HEIGHT); | |
| } | |
| void VGA256Term::Set_Video_Mode(int mode) { | |
| union REGS inregs, outregs; | |
| inregs.h.ah = 0; | |
| inregs.h.al = (unsigned char)mode; | |
| int86(0x10, &inregs, &outregs); | |
| } | |
| void VGA256Term::set_color(int index, int red, int green, int blue) { | |
| outp(0x03c8, index); | |
| outp(0x03c9, red); | |
| outp(0x03c9, green); | |
| outp(0x03c9, blue); | |
| } | |
| /* | |
| inline int sgn(int x) { | |
| return (x < 0) ? -1 : (x > 0); | |
| } */ | |
| VGA256Term::~VGA256Term() { | |
| this->Set_Video_Mode(TEXT_MODE); | |
| } |