Develop into master #9
@@ -30,7 +30,6 @@
|
|||||||
namespace scene
|
namespace scene
|
||||||
{
|
{
|
||||||
std::shared_ptr<entities::MainCharacter>main_character;
|
std::shared_ptr<entities::MainCharacter>main_character;
|
||||||
std::deque<entities::Light> lights;
|
|
||||||
std::vector<std::shared_ptr<entities::CollisionEntity>> collision_entities;
|
std::vector<std::shared_ptr<entities::CollisionEntity>> collision_entities;
|
||||||
entities::HouseGenerator* house_generator;
|
entities::HouseGenerator* house_generator;
|
||||||
std::deque<std::shared_ptr<entities::Entity>> house_models;
|
std::deque<std::shared_ptr<entities::Entity>> house_models;
|
||||||
@@ -39,7 +38,6 @@ namespace scene
|
|||||||
models::ModelTexture texture;
|
models::ModelTexture texture;
|
||||||
shaders::EntityShader* shader;
|
shaders::EntityShader* shader;
|
||||||
shaders::GuiShader* gui_shader;
|
shaders::GuiShader* gui_shader;
|
||||||
entities::Camera camera(glm::vec3(0, -50, 0), glm::vec3(0, 0, 0));
|
|
||||||
std::vector<gui::GuiTexture*> guis;
|
std::vector<gui::GuiTexture*> guis;
|
||||||
|
|
||||||
int furniture_count_old;
|
int furniture_count_old;
|
||||||
@@ -53,7 +51,7 @@ namespace scene
|
|||||||
*/
|
*/
|
||||||
In_Game_Scene::In_Game_Scene()
|
In_Game_Scene::In_Game_Scene()
|
||||||
{
|
{
|
||||||
camera = new entities::Camera(glm::vec3(0, 0, 0), glm::vec3(0, 0, 0));
|
camera = std::make_unique<entities::Camera>(glm::vec3(0, 0, 0), glm::vec3(0, 0, 0));
|
||||||
|
|
||||||
shader = new shaders::EntityShader;
|
shader = new shaders::EntityShader;
|
||||||
shader->Init();
|
shader->Init();
|
||||||
@@ -80,7 +78,6 @@ namespace scene
|
|||||||
*/
|
*/
|
||||||
In_Game_Scene::~In_Game_Scene()
|
In_Game_Scene::~In_Game_Scene()
|
||||||
{
|
{
|
||||||
delete camera;
|
|
||||||
delete shader;
|
delete shader;
|
||||||
delete gui_shader;
|
delete gui_shader;
|
||||||
delete house_generator;
|
delete house_generator;
|
||||||
@@ -230,14 +227,14 @@ namespace scene
|
|||||||
shader->Start();
|
shader->Start();
|
||||||
shader->LoadSkyColor(render_engine::renderer::SKY_COLOR);
|
shader->LoadSkyColor(render_engine::renderer::SKY_COLOR);
|
||||||
shader->LoadLightsDeque(lights);
|
shader->LoadLightsDeque(lights);
|
||||||
shader->LoadViewMatrix(camera);
|
shader->LoadViewMatrix(*camera);
|
||||||
|
|
||||||
for (std::shared_ptr<entities::Entity> model_entity : house_models)
|
for (std::shared_ptr<entities::Entity> model_entity : house_models)
|
||||||
{
|
{
|
||||||
render_engine::renderer::Render(model_entity, *shader);
|
render_engine::renderer::Render(model_entity, *shader);
|
||||||
}
|
}
|
||||||
|
|
||||||
render_engine::renderer::Render(*main_character, *shader);
|
render_engine::renderer::Render(main_character, *shader);
|
||||||
|
|
||||||
// Render GUI items
|
// Render GUI items
|
||||||
//render_engine::renderer::Render(guis, *gui_shader);
|
//render_engine::renderer::Render(guis, *gui_shader);
|
||||||
@@ -254,11 +251,11 @@ namespace scene
|
|||||||
main_character->Move(window);
|
main_character->Move(window);
|
||||||
|
|
||||||
//std::cout << "x get: " << movement.x << "\ny get: " << movement.y << "\nz get: " << movement.z << "\n";
|
//std::cout << "x get: " << movement.x << "\ny get: " << movement.y << "\nz get: " << movement.z << "\n";
|
||||||
camera.Follow(main_character->GetPosition());
|
camera->Follow(main_character->GetPosition());
|
||||||
|
|
||||||
// calculate where the next house model should be loaded
|
// calculate where the next house model should be loaded
|
||||||
static int last_model_pos = 0;
|
static int last_model_pos = 0;
|
||||||
int model_pos = -round(camera.GetPosition().z / (house_generator->GetHouseDepth())); // how much models we have passed, minus because we are moving in the negative z axis
|
int model_pos = -round(camera->GetPosition().z / (house_generator->GetHouseDepth())); // how much models we have passed, minus because we are moving in the negative z axis
|
||||||
|
|
||||||
// if we have passed a model, load a new one and delete the one behind us
|
// if we have passed a model, load a new one and delete the one behind us
|
||||||
if (last_model_pos != model_pos)
|
if (last_model_pos != model_pos)
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <memory>
|
||||||
#include "scene.h"
|
#include "scene.h"
|
||||||
#include "../gui/gui_interactable.h"
|
#include "../gui/gui_interactable.h"
|
||||||
#include "../models/model.h"
|
#include "../models/model.h"
|
||||||
@@ -38,7 +39,7 @@ namespace scene
|
|||||||
//entities_to_render is a list of entities, those entities will be rendered in the 3D environment.
|
//entities_to_render is a list of entities, those entities will be rendered in the 3D environment.
|
||||||
std::vector<entities::Entity> entities_to_render;
|
std::vector<entities::Entity> entities_to_render;
|
||||||
//lights is a lost of light points in the game, for example the sun or it can be used to attach light effects to lamps.
|
//lights is a lost of light points in the game, for example the sun or it can be used to attach light effects to lamps.
|
||||||
std::vector<entities::Light> lights;
|
std::deque<entities::Light> lights;
|
||||||
|
|
||||||
models::RawModel raw_model;
|
models::RawModel raw_model;
|
||||||
models::ModelTexture texture;
|
models::ModelTexture texture;
|
||||||
@@ -47,7 +48,7 @@ namespace scene
|
|||||||
//the gui_shader is used of rendering the gui models (for example the pause buttons).
|
//the gui_shader is used of rendering the gui models (for example the pause buttons).
|
||||||
shaders::GuiShader* gui_shader;
|
shaders::GuiShader* gui_shader;
|
||||||
//camera is the camera view of the game scene, this camera will be behind the main character.
|
//camera is the camera view of the game scene, this camera will be behind the main character.
|
||||||
entities::Camera *camera;
|
std::unique_ptr<entities::Camera> camera;
|
||||||
//guis is a list of all the gui components that needs to be load in the scene.
|
//guis is a list of all the gui components that needs to be load in the scene.
|
||||||
std::vector<gui::GuiTexture*> guis;
|
std::vector<gui::GuiTexture*> guis;
|
||||||
//pause_guis is a list of components that will be rendered when the game is paused.
|
//pause_guis is a list of components that will be rendered when the game is paused.
|
||||||
|
|||||||
Reference in New Issue
Block a user