2021-11-20 05:48:47 +00:00
|
|
|
//
|
|
|
|
// Created by SeanOMik on 7/2/2020.
|
|
|
|
// Github: https://github.com/SeanOMik
|
|
|
|
//
|
|
|
|
|
2021-11-25 21:15:24 +00:00
|
|
|
#include "simpleengine/shapes/2d/square.h"
|
2021-11-21 06:23:53 +00:00
|
|
|
#include <simpleengine/shader.h>
|
|
|
|
#include <simpleengine/renderable.h>
|
|
|
|
#include <simpleengine/event/event.h>
|
|
|
|
#include <simpleengine/shader_program.h>
|
2021-11-20 05:48:47 +00:00
|
|
|
#include <simpleengine/game.h>
|
2021-11-21 06:23:53 +00:00
|
|
|
#include <simpleengine/shapes/2d/triangle.h>
|
2021-11-25 21:15:24 +00:00
|
|
|
#include <simpleengine/vertex.h>
|
2021-11-20 05:48:47 +00:00
|
|
|
|
|
|
|
#include <chrono>
|
|
|
|
#include <iostream>
|
2021-11-21 06:23:53 +00:00
|
|
|
#include <sstream>
|
2021-11-25 21:15:24 +00:00
|
|
|
#include <stdint.h>
|
2021-11-21 06:23:53 +00:00
|
|
|
|
|
|
|
#include <cmrc/cmrc.hpp>
|
|
|
|
CMRC_DECLARE(resource_shaders);
|
|
|
|
|
|
|
|
std::string read_resource_shader(const std::string& path) {
|
|
|
|
auto fs = cmrc::resource_shaders::get_filesystem();
|
|
|
|
cmrc::file vertex_file = fs.open(path);
|
|
|
|
|
|
|
|
return std::string(vertex_file.begin());
|
|
|
|
}
|
2021-11-20 05:48:47 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
2021-11-25 21:15:24 +00:00
|
|
|
simpleengine::Game game(640, 480, "SimpleEngine 3D OpenGL - Developer Testing", GLFW_OPENGL_CORE_PROFILE, 4, 4, false);
|
2021-11-21 06:23:53 +00:00
|
|
|
|
|
|
|
// Load shaders
|
|
|
|
std::string vertex_core = read_resource_shader("shaders/vertex_core.glsl");
|
|
|
|
std::string fragment_core = read_resource_shader("shaders/fragment_core.glsl");
|
|
|
|
|
|
|
|
// Create shader program
|
|
|
|
simpleengine::ShaderProgram shader_prog;
|
2021-11-25 21:15:24 +00:00
|
|
|
shader_prog.add_shader_from_source(simpleengine::ShaderType::ST_Vertex, vertex_core);
|
|
|
|
shader_prog.add_shader_from_source(simpleengine::ShaderType::ST_Fragment, fragment_core);
|
2021-11-21 06:23:53 +00:00
|
|
|
shader_prog.link();
|
|
|
|
std::shared_ptr<GLuint> base_shader_program = shader_prog.program;
|
|
|
|
|
2021-11-25 21:15:24 +00:00
|
|
|
/* std::vector<glm::vec3> vertices = {
|
|
|
|
glm::vec3(-0.5f, -0.5f, 0.f),
|
|
|
|
glm::vec3(0.5f, -0.5f, 0.f),
|
|
|
|
glm::vec3(0.f, 0.5f, 0.f),
|
|
|
|
}; */
|
|
|
|
/* std::vector<glm::vec3> vertices = {
|
|
|
|
glm::vec3(0.5f, 0.5f, 0.0f),
|
|
|
|
glm::vec3(0.5f, -0.5f, 0.0f),
|
|
|
|
glm::vec3(-0.5f, 0.5f, 0.0f),
|
|
|
|
};
|
|
|
|
|
|
|
|
std::shared_ptr<simpleengine::Event> tri(new simpleengine::shapes_2d::Triangle(base_shader_program, vertices));
|
|
|
|
game.add_event(tri); */
|
|
|
|
|
|
|
|
/* 0.5f, 0.5f, 0.0f, // top right
|
|
|
|
0.5f, -0.5f, 0.0f, // bottom right
|
|
|
|
-0.5f, 0.5f, 0.0f, // top left
|
|
|
|
// second triangle
|
|
|
|
0.5f, -0.5f, 0.0f, // bottom right
|
|
|
|
-0.5f, -0.5f, 0.0f, // bottom left
|
|
|
|
-0.5f, 0.5f, 0.0f */
|
|
|
|
|
|
|
|
std::vector<glm::vec3> vertices = {
|
|
|
|
glm::vec3(0.5f, 0.5f, 0.f), // top right
|
|
|
|
glm::vec3(0.5f, -0.5f, 0.f), // bottom right
|
|
|
|
glm::vec3(-0.5f, -0.5f, 0.f), // bottom left
|
|
|
|
glm::vec3(-0.5f, 0.5f, 0.f), // top left
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<GLuint> indicies = {
|
|
|
|
0, 1, 3, // first triangle
|
|
|
|
1, 2, 3 // second triangle
|
|
|
|
};
|
|
|
|
|
|
|
|
std::shared_ptr<simpleengine::Event> square(new simpleengine::shapes_2d::Square(base_shader_program, vertices, indicies));
|
|
|
|
game.add_event(square);
|
2021-11-20 05:48:47 +00:00
|
|
|
|
|
|
|
return game.run();
|
|
|
|
}
|