// // Lol Engine - Graphing tutorial // // Copyright: (c) 2012 Sam Hocevar // This program is free software; you can redistribute it and/or // modify it under the terms of the Do What The Fuck You Want To // Public License, Version 2, as published by Sam Hocevar. See // http://sam.zoy.org/projects/COPYING.WTFPL for more details. // #if defined HAVE_CONFIG_H # include "config.h" #endif #include "core.h" #include "loldebug.h" using namespace std; using namespace lol; static int const TEXTURE_WIDTH = 128; extern char const *lolfx_04_texture; class TextureDemo : public WorldEntity { public: TextureDemo() : m_frames(0), m_ready(false) { m_vertices << vec2(-1.0, 1.0); m_vertices << vec2(-1.0, -1.0); m_vertices << vec2( 1.0, -1.0); m_vertices << vec2(-1.0, 1.0); m_vertices << vec2( 1.0, -1.0); m_vertices << vec2( 1.0, 1.0); m_heightmap = new uint8_t[4 * TEXTURE_WIDTH * 1]; } virtual ~TextureDemo() { delete m_heightmap; } virtual void TickGame(float seconds) { WorldEntity::TickGame(seconds); /* Generate a new heightmap at the beginning */ if (m_frames == 0) memset(m_heightmap, 255, 4 * TEXTURE_WIDTH); /* Scroll left */ for (int i = 0; i < TEXTURE_WIDTH - 1; i++) m_heightmap[4 * i] = m_heightmap[4 * i + 4]; int height = m_heightmap[4 * (TEXTURE_WIDTH - 1)]; height = height / 2 + 255 / 4 + rand() % 97 - 48; height = std::max(15, std::min(height, 240)); m_heightmap[4 * (TEXTURE_WIDTH - 1)] = height; /* Update frame counter */ ++m_frames; } virtual void TickDraw(float seconds) { WorldEntity::TickDraw(seconds); /* Initialise GPU data */ if (!m_ready) { m_texture = new Texture(ivec2(TEXTURE_WIDTH, 1), PixelFormat::A8R8G8B8); m_shader = Shader::Create(lolfx_04_texture); m_coord = m_shader->GetAttribLocation("in_Position", VertexUsage::Position, 0); m_vdecl = new VertexDeclaration(VertexStream(VertexUsage::Position)); m_vbo = new VertexBuffer(m_vertices.Bytes()); void *vertices = m_vbo->Lock(0, 0); memcpy(vertices, &m_vertices[0], m_vertices.Bytes()); m_vbo->Unlock(); m_ready = true; /* FIXME: this object never cleans up */ } /* Send new heightmap to GPU */ m_texture->SetData(m_heightmap); m_shader->Bind(); m_shader->SetUniform(m_texture_uni, m_texture->GetTexture(), 0); m_vdecl->SetStream(m_vbo, m_coord); m_vdecl->Bind(); m_vdecl->DrawElements(MeshPrimitive::Triangles, 0, 6); m_vdecl->Unbind(); } private: Array m_vertices; Texture *m_texture; Shader *m_shader; ShaderAttrib m_coord; ShaderUniform m_texture_uni; VertexDeclaration *m_vdecl; VertexBuffer *m_vbo; uint8_t *m_heightmap; int m_frames; bool m_ready; }; int main(int argc, char **argv) { Application app("Tutorial 4: Texture", ivec2(640, 480), 60.0f); new TextureDemo(); app.Run(); return EXIT_SUCCESS; }