2016-09-28 09:50:35 +00:00
|
|
|
#include "renderer.hpp"
|
|
|
|
|
|
|
|
#include "glclasses.hpp"
|
|
|
|
|
|
|
|
#include "game.hpp"
|
|
|
|
|
|
|
|
#include "state/trace.hpp"
|
|
|
|
#include "state/object.hpp"
|
|
|
|
#include "state/missile.hpp"
|
|
|
|
#include "state/player.hpp"
|
|
|
|
#include "state/planet.hpp"
|
|
|
|
#include "state/ship.hpp"
|
|
|
|
#include "state/explosion.hpp"
|
|
|
|
|
2016-09-28 11:00:40 +00:00
|
|
|
class PolygonModel;
|
|
|
|
|
2016-09-28 09:50:35 +00:00
|
|
|
namespace endofthejedi {
|
|
|
|
|
2016-09-28 11:00:40 +00:00
|
|
|
class RendererPolygon3d : public Renderer {
|
2016-09-28 09:50:35 +00:00
|
|
|
public:
|
|
|
|
void setup();
|
|
|
|
void render(const game::State *state) override;
|
|
|
|
|
2016-09-28 12:19:05 +00:00
|
|
|
private:
|
|
|
|
void renderPlanets(const game::State *state);
|
|
|
|
void renderMissiles(const game::State *state);
|
|
|
|
//void renderShips(const game::State *state);
|
|
|
|
|
|
|
|
void addModel(const std::string &filename, PolygonModel **dest);
|
|
|
|
|
2016-09-28 11:00:40 +00:00
|
|
|
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
|
2016-09-28 12:19:05 +00:00
|
|
|
PolygonModel *m_missileModel;
|
|
|
|
PolygonModel *m_planetModel;
|
2016-09-28 11:16:11 +00:00
|
|
|
|
2016-09-28 11:36:22 +00:00
|
|
|
// for rendering everything
|
|
|
|
Shader m_shader;
|
2016-09-28 11:00:40 +00:00
|
|
|
};
|
2016-09-28 09:50:35 +00:00
|
|
|
}
|