cloudy-raytracer/renderer/simplerenderer.cpp

86 lines
3 KiB
C++
Raw Normal View History

2022-10-28 09:31:13 +02:00
#include "camera/camera.h"
#include "renderer/simplerenderer.h"
#include "scene/scene.h"
#include <iostream>
2022-12-10 18:25:29 +01:00
#include <thread>
2022-10-28 09:31:13 +02:00
#include <chrono>
#include <iomanip>
#include "post_processing/bloom.h"
2022-10-28 09:31:13 +02:00
2022-12-10 18:25:29 +01:00
void SimpleRenderer::renderThread(const Scene *scene, Camera const *camera, Texture *image, int width, int widthStep, int widthOffset, int height, int heightStep, int heightOffset, std::atomic<int> *k, int const stepSize) {
2022-12-12 14:56:14 +01:00
float const aspectRatio = static_cast<float>(height) / width;
for (int y = heightOffset; y < height; y += heightStep) {
for (int x = widthOffset; x < width; x += widthStep) {
Ray ray = camera->createRay((static_cast<float>(x) / width * 2 - 1), -(static_cast<float>(y) / height * 2 - 1) * aspectRatio);
image->setPixelAt(x, y, clamped(scene->traceRay(ray)));
// Super hacky progress bar!
if (++*k % stepSize == 0) {
std::cout << "=" << std::flush;
}
}
2022-12-10 18:25:29 +01:00
}
}
2022-10-28 09:31:13 +02:00
Texture SimpleRenderer::renderImage(Scene const &scene, Camera const &camera, int width, int height) {
2022-12-12 14:56:14 +01:00
Texture image(width, height);
// Setup timer
std::chrono::steady_clock::time_point start, stop;
// Reset Ray counting
Ray::resetRayCount();
// Super-hacky progress bar!
std::cout << "(SimpleRenderer): Begin rendering..." << std::endl;
std::cout << "| 0%";
int const barSize = 50;
int const stepSize = (width * height) / barSize;
for (int i = 0; i < barSize - 3 - 5; ++i)
std::cout << " ";
std::cout << "100% |" << std::endl << "|";
std::atomic<int> k(0);
/* Start timer */ start = std::chrono::steady_clock::now();
// Spawn a thread for every logical processor -1, calling the renderThread function
int const nThreads = std::thread::hardware_concurrency();
std::vector<std::thread> threads;
for (int t = 0; t < nThreads - 1; ++t) {
threads.emplace_back(renderThread, &scene, &camera, &image, width, nThreads, t, height, 1, 0, &k, stepSize);
}
2022-11-11 14:27:43 +01:00
2022-12-12 14:56:14 +01:00
// Call the renderThread function yourself
renderThread(&scene, &camera, &image, width, nThreads, nThreads - 1, height, 1, 0, &k, stepSize);
2022-12-10 18:25:29 +01:00
2022-12-12 14:56:14 +01:00
// Rejoin the threads
for (int t = 0; t < nThreads - 1; ++t) {
threads[t].join();
}
2022-11-11 14:27:43 +01:00
2022-12-12 14:56:14 +01:00
// Stop timer
stop = std::chrono::steady_clock::now();
2022-11-11 14:27:43 +01:00
2022-12-12 14:56:14 +01:00
std::cout << "| Done!" << std::endl;
2022-11-11 14:27:43 +01:00
2022-12-12 14:56:14 +01:00
// Calculate the Time taken in seconds
double seconds = std::chrono::duration_cast<std::chrono::duration<double>>(stop - start).count();
2022-11-11 14:27:43 +01:00
2022-12-12 14:56:14 +01:00
std::cout << "Time: " << seconds << "s" << std::endl;
2022-11-11 14:27:43 +01:00
2022-12-12 14:56:14 +01:00
// Get the number of seconds per ray
int rays = Ray::getRayCount();
2022-11-11 14:27:43 +01:00
2022-12-12 14:56:14 +01:00
std::cout << "Paths: " << rays << std::endl;
std::cout << "Paths per second: " << std::fixed << std::setprecision(0) << rays / seconds << std::endl;
2022-10-28 09:31:13 +02:00
2023-01-24 13:32:19 +01:00
// Post-processing
// Bloom shader
2023-01-25 10:20:27 +01:00
image.save("original.png");
Bloom bloomEffect = Bloom(image.getImage());
2023-01-25 10:20:27 +01:00
image.setTexture(bloomEffect.bloom(0.55f, 5, 10.0f, 0.06f));
2022-12-12 14:56:14 +01:00
return image;
}