2

I am writing my own game library in C++ using Visual Studio 2013 Ultimate. I have managed to get some basic drawing working for 1 texture, but when I add another it appears to 'overwrite' the previous.

For example, if I have texture A and texture B, B will get drawn where A should have been. I have checked that I am not using the same texture ID for each texture.

I have taken a look at OpenGL trying to Draw Multiple 2d Textures, only 1st one appears, but this did not solve my problem.

I am quite new to OpenGL and lower level graphics programming in general, could someone please explain to me what is wrong with my code?


Here is my texture loading code:

Texture::Texture(const std::string& filePath)
{
    m_pixelData = PixelData(stbi_load(filePath.c_str(),
                                      &m_size.x,
                                      &m_size.y,
                                      &m_numberOfImageComponents,
                                      0 /* number of requested image components if non-zero */));

    // generate 1 texture name and store it in m_textureName
    glGenTextures(1, &m_textureID);

    // make this the active texture
    glBindTexture(GL_TEXTURE_2D, m_textureID);

    // specifies how the data to be uploaded is aligned
    glPixelStorei(GL_UNPACK_ALIGNMENT, 1);

    // set texture parameters (need to look up the details of what's going on here)
    // TODO work out what this does
    glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
    glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
    glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
    glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);

    // TODO work out what this does
    glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);

    GLenum imageFormat;

    // Work out image format
    // TODO add proper error handling
    switch(m_numberOfImageComponents)
    {
    case 4:
        imageFormat = GL_RGBA;
        break;
    case 3:
        imageFormat = GL_RGB;
        break;
    default:
        DDGL_LOG(ERROR, "No image formats with " + std::to_string(m_numberOfImageComponents) + "components known");
        throw;
    }

    // upload the texture to VRAM
    glTexImage2D(GL_TEXTURE_2D,
                0,
                imageFormat,
                m_size.x,
                m_size.y,
                0,
                imageFormat,
                GL_UNSIGNED_BYTE,
                m_pixelData.get());
}

Here is my 'start draw' code

void GraphicsAPIWrapper::startDraw()
{
    // TODO does this need to be called every frame?
    glMatrixMode(GL_PROJECTION); // select the matrix
    glLoadIdentity(); //reset the matrix

    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
}

Here is my drawing code

void GraphicsAPIWrapper::draw(std::shared_ptr<IDrawableGameObject> drawableObject)
{
        glPushMatrix();

        // convert pixel coordinates to decimals
        const Vector2F floatWindowSize          ((float) getWindowSize().x,                             (float) getWindowSize().y);
        const Vector2F floatObjectSize          ((float) drawableObject->getSize().x,                   (float) drawableObject->getSize().y);
        const Vector2F relativeObjectSize       (floatObjectSize.x / floatWindowSize.x,                 floatObjectSize.y / floatWindowSize.y);
        const Vector2F relativeObjectPosition   (drawableObject->getPosition().x / floatWindowSize.x,   drawableObject->getPosition().y / floatWindowSize.y);

        // transformations
        glTranslatef(relativeObjectPosition.x, relativeObjectPosition.y, 0.0f);
        glRotatef(drawableObject->getRotation(), 0.0f, 0.0f, 1.0f);

        // TODO should this be triangles or quads? I've been told triangles are generally higher performance
        // right now QUADS are simpler though
        glBegin(GL_QUADS);

        glBindTexture(GL_TEXTURE_2D, drawableObject->getTextureID());

        glTexCoord2f(0.0f, 1.0f); glVertex3f(-relativeObjectSize.x, -relativeObjectSize.y,  1.0f);
        glTexCoord2f(1.0f, 1.0f); glVertex3f(relativeObjectSize.x,  -relativeObjectSize.y,  1.0f);
        glTexCoord2f(1.0f, 0.0f); glVertex3f(relativeObjectSize.x,  relativeObjectSize.y,   1.0f);
        glTexCoord2f(0.0f, 0.0f); glVertex3f(-relativeObjectSize.x, relativeObjectSize.y,   1.0f);

        glEnd();

        glPopMatrix();
}

Here is my 'end draw' code

void GraphicsAPIWrapper::endDraw()
{
    glfwSwapBuffers(m_window->getWindow());
}

So, just to be extremely clear, the behavior I am getting is that one texture is getting drawn everywhere, rather than different textures as desired.

Community
  • 1
  • 1
OMGtechy
  • 7,935
  • 8
  • 48
  • 83

1 Answers1

3

You are calling glBindTexture() inside a glBegin/glEnd-Block, which is invalid and will have no effect besides generating an error. Hence, the one really bound is the one last bound before that - very likely to be the bind operation when you load your texture, so the last one loaded is the one shown for all objects...

derhass
  • 43,833
  • 2
  • 57
  • 78