diff --git a/CMakeLists.txt b/CMakeLists.txt index bc68aed..d4222cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,7 @@ file(GLOB_RECURSE source_files add_library(openglu SHARED ${include_files} ${source_files} + "cpp.hint" ) target_compile_definitions(openglu PRIVATE OGLU_BUILD_DLL) diff --git a/cpp.hint b/cpp.hint new file mode 100644 index 0000000..3ec7df5 --- /dev/null +++ b/cpp.hint @@ -0,0 +1,6 @@ +// Hint files help the Visual Studio IDE interpret Visual C++ identifiers +// such as names of functions and macros. +// For more information see https://go.microsoft.com/fwlink/?linkid=865984 +#define OGLU_API __declspec(dllexport) +#define OGLU_API __declspec(dllimport) +#define OGLU_API diff --git a/examples/debug/CMakeLists.txt b/examples/debug/CMakeLists.txt index 03e7a86..68eb0c7 100644 --- a/examples/debug/CMakeLists.txt +++ b/examples/debug/CMakeLists.txt @@ -13,4 +13,5 @@ target_link_libraries(debug PRIVATE add_custom_command(TARGET debug POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy $ $ $ + COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR}/shaders $/shaders ) \ No newline at end of file diff --git a/examples/debug/main.cpp b/examples/debug/main.cpp index beca68d..f2eb67b 100644 --- a/examples/debug/main.cpp +++ b/examples/debug/main.cpp @@ -47,7 +47,9 @@ int main(int argc, char** argv) { 0, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(float), (void*)0 } }; - oglu::Object(vertices, sizeof(vertices), nullptr, 0, topology, sizeof(topology)); + oglu::Object triangle(vertices, sizeof(vertices), nullptr, 0, topology, sizeof(topology)); + + oglu::Shader shader("shaders/vertexShader.vert", ""); while (!glfwWindowShouldClose(window)) diff --git a/examples/debug/shaders/vertexShader.vert b/examples/debug/shaders/vertexShader.vert new file mode 100644 index 0000000..c3474f2 --- /dev/null +++ b/examples/debug/shaders/vertexShader.vert @@ -0,0 +1,7 @@ +#version 330 core +layout (location = 0) in vec3 aPos; + +void main() +{ + gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0); +} \ No newline at end of file diff --git a/include/object.hpp b/include/object.hpp index 01b74e1..cfeb06f 100644 --- a/include/object.hpp +++ b/include/object.hpp @@ -6,7 +6,7 @@ namespace oglu { - typedef struct { + typedef OGLU_API struct { GLuint index; GLint size; GLenum type; diff --git a/include/openglu.hpp b/include/openglu.hpp index 009c664..7675b96 100644 --- a/include/openglu.hpp +++ b/include/openglu.hpp @@ -6,6 +6,7 @@ #include "color.hpp" #include "object.hpp" +#include "shader.hpp" namespace oglu { diff --git a/include/shader.hpp b/include/shader.hpp new file mode 100644 index 0000000..3d1ef29 --- /dev/null +++ b/include/shader.hpp @@ -0,0 +1,22 @@ +#ifndef SHADER_HPP +#define SHADER_HPP + +#include +#include + +namespace oglu +{ + class OGLU_API Shader + { + public: + Shader(const char* vertexShaderFile, const char* fragmentShaderFile); + + private: + void LoadShaderSource(const char* filename, char** buffer); + + private: + GLuint vertexShader, fragmentShader; + }; +} + +#endif \ No newline at end of file diff --git a/src/object.cpp b/src/object.cpp index ed9a02b..8ccdd35 100644 --- a/src/object.cpp +++ b/src/object.cpp @@ -13,9 +13,9 @@ namespace oglu VAO(0) { GLuint VBO; - glGenBuffers(1, &VBO); + //glGenBuffers(1, &VBO); - glBindBuffer(GL_ARRAY_BUFFER, VBO); - glBufferData(GL_ARRAY_BUFFER, verticesSize, vertices, GL_STATIC_DRAW); + //glBindBuffer(GL_ARRAY_BUFFER, VBO); + //glBufferData(GL_ARRAY_BUFFER, verticesSize, vertices, GL_STATIC_DRAW); } } \ No newline at end of file diff --git a/src/shader.cpp b/src/shader.cpp new file mode 100644 index 0000000..9512c85 --- /dev/null +++ b/src/shader.cpp @@ -0,0 +1,36 @@ +#include + +#include +#include +#include +#include + +namespace oglu +{ + Shader::Shader(const char* vertexShaderFile, const char* fragmentShaderFile) : + vertexShader(0), fragmentShader(0) + { + std::cout << "jkskdjks" << std::endl; + vertexShader = glCreateShader(GL_VERTEX_SHADER); + char* source = nullptr; + LoadShaderSource(vertexShaderFile, &source); + std::cout << source << std::endl; + } + + void Shader::LoadShaderSource(const char* filename, char** buffer) + { + std::ifstream file(filename); + if (!file.good()) + { + file.close(); + throw std::exception(std::string("Failed to open shader file: " + std::string(filename)).c_str()); + } + + std::string str((std::istreambuf_iterator(file)), std::istreambuf_iterator()); + (*buffer) = (char*)malloc(str.size() + 1); + std::cout << "dsnskdnksdnk" << std::endl; + memcpy(*buffer, str.c_str(), str.size()); + std::cout << "diufoisdufo34" << std::endl; + (*buffer)[str.size()] = '\x00'; + } +} \ No newline at end of file