// // Created by Keuin on 2022/4/11. // #ifndef RT_BITMAP_H #define RT_BITMAP_H #include #include #include #include #define COLORMIX_OVERFLOW_CHECK //// T is some unsigned integer //template //T saturate_add(T a, T b) { // T c = a + b; // if (a > c || b > c) { // c = (1ULL << (sizeof(T) * 8U)) - 1ULL; // } // return c; //} // T is some unsigned integer, do not use float point types! template struct pixel { T r, g, b; /** * Create a pixel of given depth, from normalized color values. * r, g, b must in range [0, 1]. * For example: Set color depth to 8bit, for normalized color (1, 0.5, 0.25), we get: (255, 127, 63). */ static inline pixel from_normalized(double r, double g, double b) { const auto mod = (1ULL << (sizeof(T) * 8U)) - 1ULL; return pixel{.r = (T) (mod * r), .g = (T) (mod * g), .b = (T) (mod * b)}; } // v3d must be a normalized vector static inline pixel from_normalized(const vec3d &v3d) { return from_normalized(v3d.x / 2.0 + 0.5, v3d.y / 2.0 + 0.5, v3d.z / 2.0 + 0.5); } }; // Mix two colors a and b. Returns a*u + b*v template inline pixel mix(const pixel &a, const pixel &b, double u, double v) { assert(u >= 0); assert(v >= 0); assert(u <= 1); assert(v <= 1); assert(u + v <= 1); pixel c{0, 0, 0}; c.r = (T) (u * a.r + v * b.r); c.g = (T) (u * a.g + v * b.g); c.b = (T) (u * a.b + v * b.b); return c; } // 8 bit pixel using pixel8b = pixel; template class bitmap { const unsigned width, height; std::vector> content; // pixels scanned by rows, from top to bottom pixel &image(unsigned x, unsigned y) { assert(x < width); assert(y < height); return content[x + y * width]; } pixel &image(unsigned x, unsigned y) const { assert(x < width); assert(y < height); return content[x + y * width]; } public: bitmap() = delete; bitmap(unsigned int width, unsigned int height) : width(width), height(height) { content.resize(width * height, pixel{}); } void set(unsigned x, unsigned y, const pixel &pixel) { image(x, y) = pixel; } pixel get(unsigned x, unsigned y) const { return image(x, y); } // Do not use float-point pixels, or this routine will break. void write_plain_ppm(std::ostream &out) const; }; template void bitmap::write_plain_ppm(std::ostream &out) const { const auto depth = (1ULL << (sizeof(T) * 8)) - 1ULL; // color depth of pixels out << "P3\n" // file header << width << ' ' << height << '\n' // image width and height << depth << '\n'; // normalized max color depth (e.g. 255 for 8bit image) for (const auto &pixel: content) { out << (unsigned long long) pixel.r << ' ' << (unsigned long long) pixel.g << ' ' << (unsigned long long) pixel.b << '\n'; } } using bitmap8b = bitmap; #endif //RT_BITMAP_H