Compare commits
2 Commits
feature/St
...
feature/pa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4587559030 | ||
|
|
2468d7fa7f |
BIN
res/background_grey.png
Normal file
|
After Width: | Height: | Size: 294 KiB |
|
Before Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 33 KiB |
@@ -5,11 +5,6 @@
|
|||||||
|
|
||||||
namespace gui
|
namespace gui
|
||||||
{
|
{
|
||||||
//Represents the type of the entitie
|
|
||||||
enum class GuiType{
|
|
||||||
LABEL, BUTTON
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Structure for representing a gui item to display on the screen
|
* Structure for representing a gui item to display on the screen
|
||||||
*
|
*
|
||||||
@@ -17,17 +12,12 @@ namespace gui
|
|||||||
* position = The center position of the gui
|
* position = The center position of the gui
|
||||||
* scale = The size (scale) of the gui
|
* scale = The size (scale) of the gui
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct GuiTexture
|
struct GuiTexture
|
||||||
{
|
{
|
||||||
int texture;
|
int texture;
|
||||||
glm::vec2 position;
|
glm::vec2 position;
|
||||||
glm::vec2 scale;
|
glm::vec2 scale;
|
||||||
|
|
||||||
virtual GuiType GetType() {
|
|
||||||
return GuiType::LABEL;
|
|
||||||
}
|
|
||||||
|
|
||||||
GuiTexture(int texture, glm::vec2 position, glm::vec2 scale): texture(texture), position(position), scale(scale)
|
GuiTexture(int texture, glm::vec2 position, glm::vec2 scale): texture(texture), position(position), scale(scale)
|
||||||
{
|
{
|
||||||
scale.x /= (WINDOW_WIDTH / WINDOW_HEIGT);
|
scale.x /= (WINDOW_WIDTH / WINDOW_HEIGT);
|
||||||
|
|||||||
@@ -104,10 +104,6 @@ namespace gui
|
|||||||
*/
|
*/
|
||||||
void SetOnExitAction(void (*fun)()) { on_exit_action = fun; }
|
void SetOnExitAction(void (*fun)()) { on_exit_action = fun; }
|
||||||
|
|
||||||
GuiType GetType() override {
|
|
||||||
return GuiType::BUTTON;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void OnClick() override { if (on_click_action != nullptr) on_click_action(); }
|
void OnClick() override { if (on_click_action != nullptr) on_click_action(); }
|
||||||
void OnEnter() override { if (on_enter_action != nullptr) on_enter_action(); }
|
void OnEnter() override { if (on_enter_action != nullptr) on_enter_action(); }
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ int main(void)
|
|||||||
|
|
||||||
current_scene->onKey(window, key, scancode, action, mods);
|
current_scene->onKey(window, key, scancode, action, mods);
|
||||||
});
|
});
|
||||||
|
|
||||||
bool window_open = true;
|
bool window_open = true;
|
||||||
// Main game loop
|
// Main game loop
|
||||||
while (!glfwWindowShouldClose(window) && window_open)
|
while (!glfwWindowShouldClose(window) && window_open)
|
||||||
|
|||||||
@@ -14,18 +14,13 @@
|
|||||||
|
|
||||||
namespace scene
|
namespace scene
|
||||||
{
|
{
|
||||||
std::vector<entities::Entity> entities;
|
/**
|
||||||
std::vector<entities::Light> lights;
|
* sets up the first things when the objects has been made
|
||||||
models::RawModel raw_model;
|
*/
|
||||||
models::ModelTexture texture;
|
|
||||||
shaders::EntityShader *shader;
|
|
||||||
shaders::GuiShader *gui_shader;
|
|
||||||
entities::Camera camera(glm::vec3(0, 0, 0), glm::vec3(0, 0, 0));
|
|
||||||
std::vector<gui::GuiTexture*> guis;
|
|
||||||
|
|
||||||
|
|
||||||
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));
|
||||||
|
|
||||||
shader = new shaders::EntityShader;
|
shader = new shaders::EntityShader;
|
||||||
shader->Init();
|
shader->Init();
|
||||||
render_engine::renderer::Init(*shader);
|
render_engine::renderer::Init(*shader);
|
||||||
@@ -33,7 +28,19 @@ namespace scene
|
|||||||
gui_shader = new shaders::GuiShader();
|
gui_shader = new shaders::GuiShader();
|
||||||
gui_shader->Init();
|
gui_shader->Init();
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* deletes certain veriables when the object will be deleted, prevents memory leaks
|
||||||
|
*/
|
||||||
|
In_Game_Scene::~In_Game_Scene()
|
||||||
|
{
|
||||||
|
delete camera;
|
||||||
|
delete shader;
|
||||||
|
delete gui_shader;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* starts the game scene, calls the render and update methods in a while loop
|
||||||
|
*/
|
||||||
scene::Scenes scene::In_Game_Scene::start(GLFWwindow* window)
|
scene::Scenes scene::In_Game_Scene::start(GLFWwindow* window)
|
||||||
{
|
{
|
||||||
raw_model = render_engine::LoadObjModel("res/House.obj");
|
raw_model = render_engine::LoadObjModel("res/House.obj");
|
||||||
@@ -45,7 +52,7 @@ namespace scene
|
|||||||
int z = 0;
|
int z = 0;
|
||||||
for (int i = 0; i < 5; ++i)
|
for (int i = 0; i < 5; ++i)
|
||||||
{
|
{
|
||||||
entities.push_back(entities::Entity(model, glm::vec3(0, -50, -50 - z), glm::vec3(0, 90, 0), 20));
|
entities_to_render.push_back(entities::Entity(model, glm::vec3(0, -50, -50 - z), glm::vec3(0, 90, 0), 20));
|
||||||
z += (raw_model.model_size.x * 20);
|
z += (raw_model.model_size.x * 20);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -54,7 +61,7 @@ namespace scene
|
|||||||
lights.push_back(entities::Light(glm::vec3(0, 0, -200), glm::vec3(0, 2, 0), glm::vec3(0.0001f, 0.0001f, 0.0001f)));
|
lights.push_back(entities::Light(glm::vec3(0, 0, -200), glm::vec3(0, 2, 0), glm::vec3(0.0001f, 0.0001f, 0.0001f)));
|
||||||
|
|
||||||
// GUI stuff
|
// GUI stuff
|
||||||
gui::Button button(render_engine::loader::LoadTexture("res/Mayo.png"), glm::vec2(0.5f, 0.0f), glm::vec2(0.25f, 0.25f));
|
gui::Button button(render_engine::loader::LoadTexture("res/Mayo.png"), glm::vec2(0.5f, 0.0f), glm::vec2(1, 1));
|
||||||
button.SetHoverTexture(render_engine::loader::LoadTexture("res/Texture.png"));
|
button.SetHoverTexture(render_engine::loader::LoadTexture("res/Texture.png"));
|
||||||
button.SetClickedTexture(render_engine::loader::LoadTexture("res/Mayo.png"));
|
button.SetClickedTexture(render_engine::loader::LoadTexture("res/Mayo.png"));
|
||||||
button.SetOnClickAction([]()
|
button.SetOnClickAction([]()
|
||||||
@@ -64,11 +71,54 @@ namespace scene
|
|||||||
guis.push_back(&button);
|
guis.push_back(&button);
|
||||||
|
|
||||||
|
|
||||||
|
//guis for the pause menu
|
||||||
|
gui::GuiTexture background(render_engine::loader::LoadTexture("res/background_grey.png"), glm::vec2(0, 0), glm::vec2(1, 1));
|
||||||
|
pause_guis.push_back(&background);
|
||||||
|
|
||||||
|
gui::Button pause_button_resume(render_engine::loader::LoadTexture("res/Mayo.png"), glm::vec2(0, 0), glm::vec2(0.25f, 0.25f));
|
||||||
|
pause_button_resume.SetHoverTexture(render_engine::loader::LoadTexture("res/Texture.png"));
|
||||||
|
pause_button_resume.SetClickedTexture(render_engine::loader::LoadTexture("res/Mayo.png"));
|
||||||
|
pause_button_resume.SetOnClickAction([]()
|
||||||
|
{
|
||||||
|
std::cout << "I got clicked on the resume button!" << std::endl;
|
||||||
|
});
|
||||||
|
pause_guis.push_back(&pause_button_resume);
|
||||||
|
|
||||||
|
gui::Button pause_button_quit(render_engine::loader::LoadTexture("res/Mayo.png"), glm::vec2(0.3f, 0.0f), glm::vec2(0.25f, 0.25f));
|
||||||
|
pause_button_quit.SetHoverTexture(render_engine::loader::LoadTexture("res/Texture.png"));
|
||||||
|
pause_button_quit.SetClickedTexture(render_engine::loader::LoadTexture("res/Mayo.png"));
|
||||||
|
pause_button_quit.SetOnClickAction([]()
|
||||||
|
{
|
||||||
|
std::cout << "I got clicked on the quit button!" << std::endl;
|
||||||
|
});
|
||||||
|
pause_guis.push_back(&pause_button_quit);
|
||||||
|
|
||||||
|
|
||||||
|
//the scene loop, this while loop represent the scene
|
||||||
while (return_value == scene::Scenes::INGAME)
|
while (return_value == scene::Scenes::INGAME)
|
||||||
{
|
{
|
||||||
update(window);
|
//checks the current game state, so it can render the correct models for each state
|
||||||
button.Update(window);
|
switch (game_state)
|
||||||
render();
|
{
|
||||||
|
/*case scene::Game_State::IDLE:
|
||||||
|
break;*/
|
||||||
|
|
||||||
|
case scene::Game_State::PAUSED:
|
||||||
|
render();
|
||||||
|
render_pause_menu();
|
||||||
|
break;
|
||||||
|
|
||||||
|
case scene::Game_State::RUNNING:
|
||||||
|
update(window);
|
||||||
|
button.Update(window);
|
||||||
|
render();
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
std::cout << "Game state unknown" << std::endl;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
glfwSwapBuffers(window);
|
glfwSwapBuffers(window);
|
||||||
glfwPollEvents();
|
glfwPollEvents();
|
||||||
@@ -79,40 +129,58 @@ namespace scene
|
|||||||
return return_value;
|
return return_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* renders the game models
|
||||||
|
*/
|
||||||
void scene::In_Game_Scene::render()
|
void scene::In_Game_Scene::render()
|
||||||
{
|
{
|
||||||
// Render
|
// Render
|
||||||
render_engine::renderer::Prepare();
|
render_engine::renderer::Prepare();
|
||||||
|
//starts the shader and begins to render
|
||||||
shader->Start();
|
shader->Start();
|
||||||
shader->LoadSkyColor(render_engine::renderer::SKY_COLOR);
|
shader->LoadSkyColor(render_engine::renderer::SKY_COLOR);
|
||||||
shader->LoadLights(lights);
|
shader->LoadLights(lights);
|
||||||
shader->LoadViewMatrix(camera);
|
shader->LoadViewMatrix(*camera);
|
||||||
|
|
||||||
// Renders each entity in the entities list
|
// Renders each entity in the entities list
|
||||||
for (entities::Entity& entity : entities)
|
for (entities::Entity& entity : entities_to_render)
|
||||||
{
|
{
|
||||||
render_engine::renderer::Render(entity, *shader);
|
render_engine::renderer::Render(entity, *shader);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Render GUI items
|
// Render GUI items
|
||||||
render_engine::renderer::Render(guis, *gui_shader);
|
//render_engine::renderer::Render(guis, *gui_shader);
|
||||||
|
|
||||||
// Stop rendering the entities
|
// Stop rendering the entities
|
||||||
shader->Stop();
|
shader->Stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//updates certain variables
|
||||||
void scene::In_Game_Scene::update(GLFWwindow* window)
|
void scene::In_Game_Scene::update(GLFWwindow* window)
|
||||||
{
|
{
|
||||||
camera.Move(window);
|
camera->Move(window);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//renders the models for the pause menu
|
||||||
|
void In_Game_Scene::render_pause_menu()
|
||||||
|
{
|
||||||
|
render_engine::renderer::Render(pause_guis, *gui_shader);
|
||||||
|
}
|
||||||
|
|
||||||
|
//manages the key input in the game scene
|
||||||
void scene::In_Game_Scene::onKey(GLFWwindow* window, int key, int scancode, int action, int mods)
|
void scene::In_Game_Scene::onKey(GLFWwindow* window, int key, int scancode, int action, int mods)
|
||||||
{
|
{
|
||||||
if (glfwGetKey(window, GLFW_KEY_SPACE) == GLFW_PRESS)
|
if (glfwGetKey(window, GLFW_KEY_SPACE) == GLFW_PRESS)
|
||||||
{
|
{
|
||||||
return_value = scene::Scenes::STOP;
|
return_value = scene::Scenes::STOP;
|
||||||
}
|
}
|
||||||
|
if (glfwGetKey(window, GLFW_KEY_P) == GLFW_PRESS)
|
||||||
|
{
|
||||||
|
game_state = scene::Game_State::PAUSED;
|
||||||
|
}
|
||||||
|
if (glfwGetKey(window, GLFW_KEY_O) == GLFW_PRESS)
|
||||||
|
{
|
||||||
|
game_state = scene::Game_State::RUNNING;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,100 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
#include <iostream>
|
||||||
|
#include <ostream>
|
||||||
|
#include <vector>
|
||||||
#include "scene.h"
|
#include "scene.h"
|
||||||
|
#include "../gui/gui_interactable.h"
|
||||||
|
#include "../models/model.h"
|
||||||
|
#include "../renderEngine/loader.h"
|
||||||
|
#include "../renderEngine/obj_loader.h"
|
||||||
|
#include "../renderEngine/renderer.h"
|
||||||
|
#include "../shaders/entity_shader.h"
|
||||||
|
#include "../toolbox/toolbox.h"
|
||||||
|
|
||||||
|
|
||||||
namespace scene
|
namespace scene
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* This enum is for managing the game scene state.
|
||||||
|
* for example: when pressed on a specific button, the game will be in a paused state and nothing about the player or the speed of the game will be updated
|
||||||
|
* and the pause screen will show up.
|
||||||
|
**/
|
||||||
|
enum class Game_State
|
||||||
|
{
|
||||||
|
//IDLE,
|
||||||
|
RUNNING,
|
||||||
|
PAUSED
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
class In_Game_Scene : public scene::Scene
|
class In_Game_Scene : public scene::Scene
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
|
//return_value is an enum that is necessary for the scene switching. Whenever this changes, the scene will change to a different scene.
|
||||||
scene::Scenes return_value = scene::Scenes::INGAME;
|
scene::Scenes return_value = scene::Scenes::INGAME;
|
||||||
|
//game_state is an enum that keeps track of the current game state. For example: is the game running(thus the user is playing the game) of is the game paused.
|
||||||
|
scene::Game_State game_state = scene::Game_State::RUNNING;
|
||||||
|
|
||||||
|
//entities_to_render is a list of entities, those entities will be rendered in the 3D environment.
|
||||||
|
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.
|
||||||
|
std::vector<entities::Light> lights;
|
||||||
|
|
||||||
|
models::RawModel raw_model;
|
||||||
|
models::ModelTexture texture;
|
||||||
|
//the shader that is used for rendering the models.
|
||||||
|
shaders::EntityShader* shader;
|
||||||
|
//the gui_shader is used of rendering the gui models (for example the pause buttons).
|
||||||
|
shaders::GuiShader* gui_shader;
|
||||||
|
//camera is the camera view of the game scene, this camera will be behind the main character.
|
||||||
|
entities::Camera *camera;
|
||||||
|
//guis is a list of all the gui components that needs to be load in the scene.
|
||||||
|
std::vector<gui::GuiTexture*> guis;
|
||||||
|
//pause_guis is a list of components that will be rendered when the game is paused.
|
||||||
|
std::vector<gui::GuiTexture*> pause_guis;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief renders the objects/gui models
|
||||||
|
* @param
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
void render_pause_menu();
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
In_Game_Scene();
|
In_Game_Scene();
|
||||||
|
~In_Game_Scene();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief the method start is the start of the scene where a while loop runs, this runs the scene.
|
||||||
|
* @param window the main window of the application
|
||||||
|
* @return Scene value that indicates in which scene the application is
|
||||||
|
*/
|
||||||
Scenes start(GLFWwindow* window) override;
|
Scenes start(GLFWwindow* window) override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief this method renders the models for the game scene
|
||||||
|
* @param
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
void render() override;
|
void render() override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief this method updates the models/variables for the game scene
|
||||||
|
* @param window the main window of the application
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
void update(GLFWwindow* window) override;
|
void update(GLFWwindow* window) override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief this method updates the models/variables for the game scene
|
||||||
|
* @param window the main window of the application
|
||||||
|
* @param key this is the keycode on which key has been pressed
|
||||||
|
* @param scancode -
|
||||||
|
* @param action-
|
||||||
|
* @param mods -
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
void onKey(GLFWwindow* window, int key, int scancode, int action, int mods) override;
|
void onKey(GLFWwindow* window, int key, int scancode, int action, int mods) override;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
7
src/scenes/scene.cpp
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include "scene.h"
|
||||||
|
|
||||||
|
scene::Scene::~Scene()
|
||||||
|
{
|
||||||
|
std::cout << "Main scene class gone!" << std::endl;
|
||||||
|
}
|
||||||
@@ -6,6 +6,9 @@
|
|||||||
|
|
||||||
namespace scene {
|
namespace scene {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* this enum represents the scenes in the game, those wil help to keep track in which scene the game is.
|
||||||
|
*/
|
||||||
enum class Scenes
|
enum class Scenes
|
||||||
{
|
{
|
||||||
STARTUP,
|
STARTUP,
|
||||||
@@ -18,14 +21,40 @@ namespace scene {
|
|||||||
class Scene
|
class Scene
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~Scene() = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief the method start is the start of a scene where a while loop runs, this runs the scene.
|
||||||
|
* @param window the main window of the application
|
||||||
|
* @return Scene value that indicates in which scene the application is
|
||||||
|
*/
|
||||||
virtual Scenes start(GLFWwindow* window) = 0;
|
virtual Scenes start(GLFWwindow* window) = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief this method renders the models for a scene
|
||||||
|
* @param
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
virtual void render() = 0;
|
virtual void render() = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief this method updates the models/variables for a scene
|
||||||
|
* @param window the main window of the application
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
virtual void update(GLFWwindow* window) = 0;
|
virtual void update(GLFWwindow* window) = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief this method updates the models/variables for a scene
|
||||||
|
* @param window the main window of the application
|
||||||
|
* @param key this is the keycode on which key has been pressed
|
||||||
|
* @param scancode -
|
||||||
|
* @param action-
|
||||||
|
* @param mods -
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
virtual void onKey(GLFWwindow* window, int key, int scancode, int action, int mods) {};
|
virtual void onKey(GLFWwindow* window, int key, int scancode, int action, int mods) {};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,104 +1,55 @@
|
|||||||
|
#include <iostream>
|
||||||
#include <GL/glew.h>
|
#include <GL/glew.h>
|
||||||
#include <GLFW/glfw3.h>
|
#include <GLFW/glfw3.h>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include "startup_Scene.h"
|
#include "startup_Scene.h"
|
||||||
#include <iostream>
|
|
||||||
#include "../models/model.h"
|
|
||||||
#include "../renderEngine/loader.h"
|
|
||||||
#include "../renderEngine/obj_loader.h"
|
|
||||||
#include "../renderEngine/renderer.h"
|
|
||||||
#include "../shaders/entity_shader.h"
|
|
||||||
#include "../toolbox/toolbox.h"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
namespace scene
|
namespace scene
|
||||||
{
|
{
|
||||||
shaders::GuiShader* gui_shader1;
|
/**
|
||||||
std::vector<gui::GuiTexture*> guis1;
|
* deletes certain variables to prevent memory leaks
|
||||||
|
*/
|
||||||
Startup_Scene::Startup_Scene() {
|
Startup_Scene::~Startup_Scene()
|
||||||
shaders::EntityShader shader;
|
{
|
||||||
shader.Init();
|
std::cout << "startup scene gone!" << std::endl;
|
||||||
render_engine::renderer::Init(shader);
|
|
||||||
shader.CleanUp();
|
|
||||||
|
|
||||||
gui_shader1 = new shaders::GuiShader();
|
|
||||||
gui_shader1->Init();
|
|
||||||
}
|
|
||||||
|
|
||||||
gui::Button* ConvertGuiTextureToButton(gui::GuiTexture* texture) {
|
|
||||||
if (texture->GetType() == gui::GuiType::BUTTON) {
|
|
||||||
return (gui::Button*)texture;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* starts the start-up scene, calls the render and update methods in a while loop
|
||||||
|
*/
|
||||||
scene::Scenes scene::Startup_Scene::start(GLFWwindow *window)
|
scene::Scenes scene::Startup_Scene::start(GLFWwindow *window)
|
||||||
{
|
{
|
||||||
// GUI stuff
|
|
||||||
gui::Button button_start(render_engine::loader::LoadTexture("res/menu_item_start1.png"), glm::vec2(0.0f, 0.6f), glm::vec2(0.25f, 0.25f));
|
|
||||||
button_start.SetHoverTexture(render_engine::loader::LoadTexture("res/menu_item_start1_hover.png"));
|
|
||||||
button_start.SetClickedTexture(render_engine::loader::LoadTexture("res/menu_item_start1_click.png"));
|
|
||||||
button_start.SetOnClickAction([]()
|
|
||||||
{
|
|
||||||
std::cout << "Clicked on button: Start!" << std::endl;
|
|
||||||
});
|
|
||||||
guis1.push_back(&button_start);
|
|
||||||
|
|
||||||
gui::Button button_calibrate(render_engine::loader::LoadTexture("res/menu_item_calibrate1.png"), glm::vec2(0.0f, 0.0f), glm::vec2(0.25f, 0.25f));
|
|
||||||
button_calibrate.SetHoverTexture(render_engine::loader::LoadTexture("res/menu_item_calibrate1_hover.png"));
|
|
||||||
button_calibrate.SetClickedTexture(render_engine::loader::LoadTexture("res/menu_item_calibrate1_click.png"));
|
|
||||||
button_calibrate.SetOnClickAction([]()
|
|
||||||
{
|
|
||||||
std::cout << "Clicked on button: Calibrate!" << std::endl;
|
|
||||||
});
|
|
||||||
guis1.push_back(&button_calibrate);
|
|
||||||
|
|
||||||
gui::Button button_quit(render_engine::loader::LoadTexture("res/menu_item_quit1.png"), glm::vec2(0.0f, -0.6f), glm::vec2(0.25f, 0.25f));
|
|
||||||
button_quit.SetHoverTexture(render_engine::loader::LoadTexture("res/menu_item_quit1_hover.png"));
|
|
||||||
button_quit.SetClickedTexture(render_engine::loader::LoadTexture("res/menu_item_quit1_click.png"));
|
|
||||||
button_quit.SetOnClickAction([]()
|
|
||||||
{
|
|
||||||
std::cout << "Clicked on button: Quit!" << std::endl;
|
|
||||||
});
|
|
||||||
guis1.push_back(&button_quit);
|
|
||||||
|
|
||||||
while (return_value == scene::Scenes::STARTUP)
|
while (return_value == scene::Scenes::STARTUP)
|
||||||
{
|
{
|
||||||
render();
|
render();
|
||||||
update(window);
|
update(window);
|
||||||
for (gui::GuiTexture* button : guis1) {
|
|
||||||
gui::Button* new_button = ConvertGuiTextureToButton(button);
|
|
||||||
if(new_button != NULL)
|
|
||||||
new_button->Update(window);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
glfwSwapBuffers(window);
|
glfwSwapBuffers(window);
|
||||||
glfwPollEvents();
|
glfwPollEvents();
|
||||||
}
|
}
|
||||||
gui_shader1->CleanUp();
|
|
||||||
render_engine::loader::CleanUp();
|
|
||||||
return return_value;
|
return return_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* renders the models in the start-up scene
|
||||||
|
*/
|
||||||
void scene::Startup_Scene::render()
|
void scene::Startup_Scene::render()
|
||||||
{
|
{
|
||||||
render_engine::renderer::Prepare();
|
|
||||||
|
|
||||||
// Render GUI items
|
|
||||||
render_engine::renderer::Render(guis1, *gui_shader1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* updates the variables for the start-up scene
|
||||||
|
*/
|
||||||
void scene::Startup_Scene::update(GLFWwindow* window)
|
void scene::Startup_Scene::update(GLFWwindow* window)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* manages the key input in the start-up scene
|
||||||
|
*/
|
||||||
void scene::Startup_Scene::onKey(GLFWwindow* window, int key, int scancode, int action, int mods)
|
void scene::Startup_Scene::onKey(GLFWwindow* window, int key, int scancode, int action, int mods)
|
||||||
{
|
{
|
||||||
if (glfwGetKey(window, GLFW_KEY_SPACE) == GLFW_PRESS)
|
if (glfwGetKey(window, GLFW_KEY_SPACE) == GLFW_PRESS)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "scene.h"
|
#include "scene.h"
|
||||||
#include "../gui/gui_interactable.h"
|
#include <map>
|
||||||
|
|
||||||
namespace scene
|
namespace scene
|
||||||
{
|
{
|
||||||
@@ -9,14 +9,42 @@ namespace scene
|
|||||||
class Startup_Scene : public scene::Scene
|
class Startup_Scene : public scene::Scene
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
|
//return_value is an enum that is necessary for the scene switching. Whenever this changes, the scene will change to a different scene.
|
||||||
scene::Scenes return_value = scene::Scenes::STARTUP;
|
scene::Scenes return_value = scene::Scenes::STARTUP;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Startup_Scene();
|
~Startup_Scene();
|
||||||
gui::Button* ConvertGuiTextureToButton(gui::GuiTexture* texture);
|
|
||||||
|
/**
|
||||||
|
* @brief the method start is the start of the start-up scene where a while loop runs, this runs the scene.
|
||||||
|
* @param window the main window of the application
|
||||||
|
* @return Scene value that indicates in which scene the application is
|
||||||
|
*/
|
||||||
Scenes start(GLFWwindow* window) override;
|
Scenes start(GLFWwindow* window) override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief this method renders the models for the start-up scene
|
||||||
|
* @param
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
void render() override;
|
void render() override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief this method updates the models/variables for the start-up scene
|
||||||
|
* @param window the main window of the application
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
void update(GLFWwindow* window) override;
|
void update(GLFWwindow* window) override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief this method updates the models/variables for the start-up scene
|
||||||
|
* @param window the main window of the application
|
||||||
|
* @param key this is the keycode on which key has been pressed
|
||||||
|
* @param scancode -
|
||||||
|
* @param action-
|
||||||
|
* @param mods -
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
void onKey(GLFWwindow* window, int key, int scancode, int action, int mods) override;
|
void onKey(GLFWwindow* window, int key, int scancode, int action, int mods) override;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,6 +34,7 @@
|
|||||||
<ClCompile Include="src\renderEngine\loader.cpp" />
|
<ClCompile Include="src\renderEngine\loader.cpp" />
|
||||||
<ClCompile Include="src\renderEngine\obj_loader.cpp" />
|
<ClCompile Include="src\renderEngine\obj_loader.cpp" />
|
||||||
<ClCompile Include="src\renderEngine\renderer.cpp" />
|
<ClCompile Include="src\renderEngine\renderer.cpp" />
|
||||||
|
<ClCompile Include="src\scenes\scene.cpp" />
|
||||||
<ClCompile Include="src\shaders\gui_shader.cpp" />
|
<ClCompile Include="src\shaders\gui_shader.cpp" />
|
||||||
<ClCompile Include="src\shaders\shader_program.cpp" />
|
<ClCompile Include="src\shaders\shader_program.cpp" />
|
||||||
<ClCompile Include="src\shaders\entity_shader.cpp" />
|
<ClCompile Include="src\shaders\entity_shader.cpp" />
|
||||||
|
|||||||
@@ -75,6 +75,9 @@
|
|||||||
<ClCompile Include="src\computervision\BackgroundRemover.cpp">
|
<ClCompile Include="src\computervision\BackgroundRemover.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="src\scenes\scene.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="src\entities\Camera.h">
|
<ClInclude Include="src\entities\Camera.h">
|
||||||
|
|||||||