#include #include #include #include #include #include "../ComponentManager.h" #include "../api/ParticleEmitter.h" #include "../api/Sprite.h" #include "../api/Transform.h" #include "../api/Vector2.h" #include "../facade/SDLContext.h" #include "RenderSystem.h" using namespace crepe; using namespace std; void RenderSystem::clear_screen() { this->context.clear_screen(); } void RenderSystem::present_screen() { this->context.present_screen(); } void RenderSystem::update_camera() { ComponentManager & mgr = this->component_manager; std::vector> cameras = mgr.get_components_by_type(); if (cameras.size() == 0) throw std::runtime_error("No cameras in current scene"); for (Camera & cam : cameras) { this->context.set_camera(cam); this->curr_cam_ref = &cam; } } bool sorting_comparison(const Sprite & a, const Sprite & b) { if (a.sorting_in_layer < b.sorting_in_layer) return true; if (a.sorting_in_layer == b.sorting_in_layer) return a.order_in_layer < b.order_in_layer; return false; } std::vector> RenderSystem::sort(std::vector> & objs) { std::vector> sorted_objs(objs); std::sort(sorted_objs.begin(), sorted_objs.end(), sorting_comparison); return sorted_objs; } void RenderSystem::update() { this->clear_screen(); this->update_camera(); this->render(); this->present_screen(); } bool RenderSystem::render_particle(const Sprite & sprite, const double & scale) const { ComponentManager & mgr = this->component_manager; auto emitters = mgr.get_components_by_id(sprite.game_object_id); bool rendering_particles = false; for (const ParticleEmitter & em : emitters) { if (!(&em.data.sprite == &sprite)) continue; rendering_particles = true; if (!em.active) continue; for (const Particle & p : em.data.particles) { if (!p.active) continue; this->context.draw_particle(sprite, p.position, p.angle, scale, *this->curr_cam); } } return rendering_particles; } void RenderSystem::render_normal(const Sprite & sprite, const Transform & tm) const { ComponentManager & mgr = this->component_manager; this->context.draw(sprite, tm, *this->curr_cam); } void RenderSystem::render() const { ComponentManager & mgr = this->component_manager; vector> sprites = mgr.get_components_by_type(); vector> sorted_sprites = this->sort(sprites); for (const Sprite & sprite : sorted_sprites) { if (!sprite.active) continue; const Transform & transform = mgr.get_components_by_id(sprite.game_object_id).front().get(); bool rendered_particles = this->render_particle(sprite, transform.scale); if (rendered_particles) continue; this->render_normal(sprite, transform); } }