Adds picture copying.
This commit is contained in:
parent
8db7e08965
commit
28bad4c5ac
4 changed files with 22531 additions and 0 deletions
Binary file not shown.
|
@ -149,6 +149,26 @@ void strcat(char *buffer, const char *text)
|
||||||
while((*(buffer++) = *text++)); // copy text
|
while((*(buffer++) = *text++)); // copy text
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void putppm(int x, int y, unsigned char ppm[])
|
||||||
|
{
|
||||||
|
auto *base = &ppm[15];
|
||||||
|
for(int py = 0; py < 300; py++)
|
||||||
|
{
|
||||||
|
for(int px = 0; px < 300; px++)
|
||||||
|
{
|
||||||
|
uint32_t pixel = 0;
|
||||||
|
|
||||||
|
pixel |= (base[900 * py + 3 * px + 0] << 0);
|
||||||
|
pixel |= (base[900 * py + 3 * px + 1] << 8);
|
||||||
|
pixel |= (base[900 * py + 3 * px + 2] << 16);
|
||||||
|
|
||||||
|
setpixel(x + px, y + py, pixel);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "picture.h"
|
||||||
|
|
||||||
extern "C" void init(multiboot_info_t const & data)
|
extern "C" void init(multiboot_info_t const & data)
|
||||||
{
|
{
|
||||||
const char *msg = "You should not see this.";
|
const char *msg = "You should not see this.";
|
||||||
|
@ -197,6 +217,8 @@ extern "C" void init(multiboot_info_t const & data)
|
||||||
toString(temp, 128, mib.pitch / 4, 10); strcat(buffer, temp);
|
toString(temp, 128, mib.pitch / 4, 10); strcat(buffer, temp);
|
||||||
print_str(16, 32, buffer);
|
print_str(16, 32, buffer);
|
||||||
|
|
||||||
|
putppm(256, 16, Picture);
|
||||||
|
|
||||||
write_com(0x3F8, 'B');
|
write_com(0x3F8, 'B');
|
||||||
write_com(0x3F8, 'y');
|
write_com(0x3F8, 'y');
|
||||||
write_com(0x3F8, 'e');
|
write_com(0x3F8, 'e');
|
||||||
|
|
22509
prototypes/video/picture.h
Normal file
22509
prototypes/video/picture.h
Normal file
File diff suppressed because it is too large
Load diff
BIN
prototypes/video/picture.jpg
Normal file
BIN
prototypes/video/picture.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 77 KiB |
Loading…
Reference in a new issue