2024-06-14 11:05:54 +03:00
|
|
|
#include <LibImage/Image.h>
|
2023-11-29 16:11:35 +02:00
|
|
|
|
2024-06-14 11:05:54 +03:00
|
|
|
#include <fcntl.h>
|
2023-11-29 16:11:35 +02:00
|
|
|
#include <stdio.h>
|
2024-06-14 11:05:54 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/framebuffer.h>
|
|
|
|
#include <sys/mman.h>
|
2023-11-29 16:11:35 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2024-06-15 17:24:01 +03:00
|
|
|
void render_to_framebuffer(BAN::UniqPtr<LibImage::Image> image, bool scale)
|
2024-06-14 11:05:54 +03:00
|
|
|
{
|
|
|
|
int fd = open("/dev/fb0", O_RDWR);
|
|
|
|
if (fd == -1)
|
|
|
|
{
|
|
|
|
perror("open");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
framebuffer_info_t fb_info;
|
|
|
|
if (pread(fd, &fb_info, sizeof(fb_info), -1) == -1)
|
|
|
|
{
|
|
|
|
perror("pread");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2024-06-15 17:24:01 +03:00
|
|
|
if (scale)
|
|
|
|
image = MUST(image->resize(fb_info.width, fb_info.height));
|
|
|
|
|
2024-06-14 11:05:54 +03:00
|
|
|
ASSERT(BANAN_FB_BPP == 24 || BANAN_FB_BPP == 32);
|
|
|
|
|
|
|
|
size_t mmap_size = fb_info.height * fb_info.width * BANAN_FB_BPP / 8;
|
|
|
|
|
|
|
|
void* mmap_addr = mmap(nullptr, mmap_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
|
|
|
|
if (mmap_addr == MAP_FAILED)
|
|
|
|
{
|
|
|
|
perror("mmap");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t* u8_fb = reinterpret_cast<uint8_t*>(mmap_addr);
|
|
|
|
|
2024-06-15 17:24:01 +03:00
|
|
|
const auto& bitmap = image->bitmap();
|
|
|
|
for (uint64_t y = 0; y < BAN::Math::min<uint64_t>(image->height(), fb_info.height); y++)
|
2024-06-14 11:05:54 +03:00
|
|
|
{
|
2024-06-15 17:24:01 +03:00
|
|
|
for (uint64_t x = 0; x < BAN::Math::min<uint64_t>(image->width(), fb_info.width); x++)
|
2024-06-14 11:05:54 +03:00
|
|
|
{
|
2024-06-15 17:24:01 +03:00
|
|
|
u8_fb[(y * fb_info.width + x) * BANAN_FB_BPP / 8 + 0] = bitmap[y * image->width() + x].b;
|
|
|
|
u8_fb[(y * fb_info.width + x) * BANAN_FB_BPP / 8 + 1] = bitmap[y * image->width() + x].g;
|
|
|
|
u8_fb[(y * fb_info.width + x) * BANAN_FB_BPP / 8 + 2] = bitmap[y * image->width() + x].r;
|
2024-06-14 11:05:54 +03:00
|
|
|
if constexpr(BANAN_FB_BPP == 32)
|
2024-06-15 17:24:01 +03:00
|
|
|
u8_fb[(y * fb_info.width + x) * BANAN_FB_BPP / 8 + 3] = bitmap[y * image->width() + x].a;
|
2024-06-14 11:05:54 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msync(mmap_addr, mmap_size, MS_SYNC) == -1)
|
|
|
|
{
|
|
|
|
perror("msync");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
munmap(mmap_addr, mmap_size);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
2023-11-29 16:11:35 +02:00
|
|
|
int usage(char* arg0, int ret)
|
|
|
|
{
|
|
|
|
FILE* out = (ret == 0) ? stdout : stderr;
|
2024-06-15 17:24:01 +03:00
|
|
|
fprintf(out, "usage: %s [options]... IMAGE_PATH\n", arg0);
|
|
|
|
fprintf(out, "options:\n");
|
|
|
|
fprintf(out, " -h, --help: show this message and exit\n");
|
|
|
|
fprintf(out, " -s, --scale: scale image to framebuffer size\n");
|
2023-11-29 16:11:35 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2024-06-15 17:24:01 +03:00
|
|
|
if (argc < 2)
|
2023-11-29 16:11:35 +02:00
|
|
|
return usage(argv[0], 1);
|
2024-01-24 14:43:46 +02:00
|
|
|
|
2024-06-15 17:24:01 +03:00
|
|
|
bool scale = false;
|
|
|
|
for (int i = 1; i < argc - 1; i++)
|
|
|
|
{
|
|
|
|
if (strcmp(argv[i], "-s") == 0 || strcmp(argv[i], "--scale") == 0)
|
|
|
|
scale = true;
|
|
|
|
else if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0)
|
|
|
|
return usage(argv[0], 0);
|
|
|
|
else
|
|
|
|
return usage(argv[0], 1);
|
|
|
|
}
|
2023-11-29 16:11:35 +02:00
|
|
|
|
2024-06-15 17:24:01 +03:00
|
|
|
auto image = MUST(LibImage::Image::load_from_file(argv[argc - 1]));
|
|
|
|
render_to_framebuffer(BAN::move(image), scale);
|
2023-11-29 16:11:35 +02:00
|
|
|
|
|
|
|
for (;;)
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|