プログラムにオブジェクトをロードするためのクラスを作成しようとしています/問題は、OpenGLがすべてのオブジェクトの最後のテクスチャのみをロードすることです。
コードは次のとおりです。
game.cppクラス:
object = new Object("table.obj", "wood.bmp",0); // a new object - obj file, texture and
object1 = new Object("aa.obj", "cloth.bmp",1); // texture number
object->draw();
object1->draw();
オブジェクトクラス:
AUX_RGBImageRec *texture;
Object::Object(char* filename, char* texname, int num) {
tex_num = num;
is_loaded = false;
.... some vertex stuff here
texture = auxDIBImageLoadA(texname);
}
void Object::draw() {
if(!is_loaded) {
loadTexture();
is_loaded = true;
}
... vertex stuff again
void Object::loadTexture() {
GLuint *tex = new GLuint[10];
unsigned int names[10];
glGenTextures(1, tex);
glBindTexture(GL_TEXTURE_2D, tex[tex_num]);
cout << tex_num << endl;
// glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
glTexImage2D(GL_TEXTURE_2D, 0, 3,
texture->sizeX,
texture->sizeY,
0, GL_RGB, GL_UNSIGNED_BYTE,
texture->data);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
// free memory
delete tex;
cout << tex_num << endl;
}