KlassischeKeplerKriege/game/renderer_polygon_3d/renderer_polygon_3d.hpp

108 lines
3.2 KiB
C++
Raw Normal View History

2016-09-28 09:50:35 +00:00
#include "renderer.hpp"
2016-09-29 06:28:56 +00:00
#include <list>
#include <glm/gtc/matrix_transform.hpp>
2016-10-05 21:26:55 +00:00
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/random.hpp>
2016-10-05 21:26:55 +00:00
#include <glm/gtc/type_ptr.hpp>
#include <glm/gtx/euler_angles.hpp>
#include <glm/vec3.hpp>
2016-09-28 09:50:35 +00:00
#include "glclasses.hpp"
#include "game.hpp"
2016-10-05 21:26:55 +00:00
#include "state/explosion.hpp"
2016-09-28 09:50:35 +00:00
#include "state/missile.hpp"
2016-10-05 21:26:55 +00:00
#include "state/object.hpp"
2016-09-28 09:50:35 +00:00
#include "state/planet.hpp"
2016-10-05 21:26:55 +00:00
#include "state/player.hpp"
2016-09-28 09:50:35 +00:00
#include "state/ship.hpp"
2016-10-05 21:26:55 +00:00
#include "state/trace.hpp"
2016-09-28 09:50:35 +00:00
2016-10-05 21:26:55 +00:00
#include "image_texture.hpp"
#include "particle_batch.hpp"
#include "polygon_model.hpp"
2016-09-28 09:50:35 +00:00
namespace endofthejedi {
class RendererPolygon3d : public Renderer {
2016-09-28 09:50:35 +00:00
public:
void setup();
void render(const game::State *state) override;
void setWindowSize(int px, int py);
void setCameraMatrix(const glm::mat4 &cam);
private:
void renderPlanets();
2016-10-05 21:26:55 +00:00
void renderSun();
void renderMissiles();
void renderShips();
void renderParticles();
void addModel(const std::string &filename, PolygonModel **dest);
void addExplosionEffect(
size_t id, const glm::vec2 &pos, const glm::vec2 &missileVelocity,
bool hitPlanet,
size_t n, float duration);
2016-09-29 06:28:56 +00:00
void advanceGraphicObjects(float dt);
// shortcuts which use the lower versions
glm::mat4 computeModelMatrix(const game::Planet *planet);
glm::mat4 computeModelMatrix(const game::Missile *missile);
glm::mat4 computeModelMatrix(const game::Ship *ship);
// do the actual computation with these values
glm::mat4 computeModelMatrix(const glm::vec2 &pos, float scale, float angle=0.0);
2016-09-29 07:16:34 +00:00
void renderTraces();
2016-10-03 08:47:02 +00:00
void configureLightningInShader(Shader *shader) const;
void renderBackgroundImage();
void loadBackgroundTexture();
private:
2016-09-28 11:36:22 +00:00
// all models are also here (for easy reloading etc.)
std::vector<PolygonModel*> m_models;
// and with a specific variable name here
PolygonModel *m_missileModel;
PolygonModel *m_planetModel;
2016-09-28 12:41:15 +00:00
PolygonModel *m_shipModel;
2016-09-28 11:36:22 +00:00
// for rendering everything
Shader m_shader_background;
Shader m_shader_game_objects;
Shader m_shader_particles;
// for accessing
const game::State *m_state;
2016-09-29 06:28:56 +00:00
std::list<ParticleBatch*> m_particles;
// time value for last rendering cycle (-1 after setup/startup)
float m_lastTime;
float m_aspectRatio;
// TODO: put representation specialized for rendering in here
std::list<const game::Missile*> m_missiles;
std::list<const game::Ship*> m_ships;
2016-10-03 18:12:09 +00:00
std::string m_backgroundTexturePath;
2016-10-03 18:12:09 +00:00
ImageTexture *m_texture;
2016-10-05 18:53:37 +00:00
Shader m_postprocess_shader;
2016-10-05 21:26:55 +00:00
Shader m_multitexture_shader;
2016-10-05 18:53:37 +00:00
Texture m_postprocess_tex0;
Texture m_postprocess_tex1;
Framebuffer m_postprocess_fbo;
int m_w;
int m_h;
};
2016-09-28 09:50:35 +00:00
}