From e6215e764bc149497ab5772d9ea136809d898993 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 8 Dec 2017 01:23:27 +0000 Subject: Improving api --- tests/simplegame.cpp | 36 +++++++++++++++++++++++++++++------- 1 file changed, 29 insertions(+), 7 deletions(-) (limited to 'tests/simplegame.cpp') diff --git a/tests/simplegame.cpp b/tests/simplegame.cpp index 54ead815..2968f4ba 100644 --- a/tests/simplegame.cpp +++ b/tests/simplegame.cpp @@ -8,32 +8,54 @@ #include +#include + +using std::cout; + using namespace yage; int main() { Window window; - SpriteBatch sp; GlslProgram program; window.create("Simple Game", 800, 640); - sp.init(); + SpriteBatch sp; - program.compileShaders("/home/yannherklotz/Github/YAGE/resources/defaultshader.vert", "/home/yannherklotz/Github/YAGE/tests/resources/defaultshader.frag"); + program.compileShaders( + "/home/yannherklotz/Github/YAGE/resources/defaultshader.vert", + "/home/yannherklotz/Github/YAGE/resources/defaultshader.frag"); program.addAttribute("vertex_position"); program.addAttribute("vertex_colour"); program.addAttribute("vertex_uv"); program.linkShaders(); - Texture fountain = ResourceManager::getTexture("/home/yannherklotz/Github/YAGE/tests/resources/dngn_blood_fountain.png"); + Texture fountain = + ResourceManager::getTexture("/home/yannherklotz/Github/YAGE/tests/" + "resources/dngn_blood_fountain.png"); + + cout << "texture: " << fountain.width << ", " << fountain.height << '\n'; - while(!window.shouldClose()) { + Camera2D camera(800, 640); + + while (!window.shouldClose()) { window.clearBuffer(); - sp.begin(); - sp.draw(std::vector({0, 0, 50, 50}), std::vector({0, 0, 1, 1}), fountain.id, Colour(), 0); + program.use(); + camera.update(program); + + glActiveTexture(GL_TEXTURE0); + + GLint texture_location = program.getUniformLocation("texture_sampler"); + glUniform1i(texture_location, 0); + + sp.draw(std::vector({0, 0, 64, 64}), + std::vector({0, 0, 1, 1}), fountain.id, Colour(), 0); sp.render(); + glBindTexture(GL_TEXTURE_2D, 0); + program.unuse(); + window.pollEvents(); window.swapBuffer(); } -- cgit