Question

I have been following nehe's tutorial and I want to add few thins. I want to give different textures for different objects.

This my cube(Dokukup), which i will draw it on the renderer part. It has vertices and coordinates and also has default texture which i intent to do change it on run. This is my Tus class pretty much same code.

    public class DokuKup {
    private FloatBuffer koseArabellek; // Buffer for vertex-array
    private FloatBuffer dokuArabellek;

         private float[] koseler = { // koseler for a face at z=0
        -1.0f, -1.0f, 0.0f,  // 0. left-bottom-front
         1.0f, -1.0f, 0.0f,  // 1. right-bottom-front
        -1.0f,  1.0f, 0.0f,  // 2. left-top-front
         1.0f,  1.0f, 0.0f   // 3. right-top-front
   };

     float[] konac={
       0.0f, 1.0f,  //A. sol alt 
       1.0f, 1.0f,  //B. sag alt
       0.0f, 0.0f,  //C sol üst
       1.0f, 0.0f   //D sag üst
     };
     int[] dokuKunyeleri = new int[1]; //1 doku kunyeleri için katar

     public int doku=R.drawable.duvar1;
     private float[][] renkler = {  // renkler of the 6 faces
  {1.0f, 0.5f, 0.0f, 1.0f},  // 0. orange
  {1.0f, 0.0f, 1.0f, 1.0f},  // 1. violet
  {0.0f, 1.0f, 0.0f, 1.0f},  // 2. green
  {0.0f, 0.0f, 1.0f, 1.0f},  // 3. blue
  {1.0f, 0.0f, 0.0f, 1.0f},  // 4. red
  {1.0f, 1.0f, 0.0f, 1.0f}   // 5. yellow
     };

     public DokuKup() {
        ByteBuffer kka = ByteBuffer.allocateDirect(koseler.length * 4);
        kka.order(ByteOrder.nativeOrder()); //yerel sıralama kullanalım
    koseArabellek = kka.asFloatBuffer();//byte tipinden float tipine çevirelim
    koseArabellek.put(koseler);         //verilerimizi ara belleğe eşleyelim
    koseArabellek.position(0);          //rewind işlemi yapalım

    //doku konaç konumlarını katara float tipinde atalım, bir float 4 byte eder
    ByteBuffer dka= ByteBuffer.allocateDirect(konac.length*4);
    dka.order(ByteOrder.nativeOrder());
    dokuArabellek=dka.asFloatBuffer();
    dokuArabellek.put(konac);

    dokuArabellek.position(0);
     }

   //cizdirelim şekli
     public void ciz(GL10 gl) {
   gl.glFrontFace(GL10.GL_CCW); //ön yüz saat döngüsünün tersine
    gl.glEnable(GL10.GL_CULL_FACE); //yüz toplamayı aç
    gl.glCullFace(GL10.GL_BACK);    //arka yüzü topla

  gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
  gl.glVertexPointer(3, GL10.GL_FLOAT, 0, koseArabellek);
  gl.glEnableClientState(GL10.GL_TEXTURE_COORD_ARRAY); //doku konaç katarını seçilir kıl
  gl.glTexCoordPointer(2, GL10.GL_FLOAT, 0, dokuArabellek); //doku konaç katarını tanımla

  // front
  gl.glPushMatrix();
  gl.glTranslatef(0.0f, 0.0f, 1.0f);
  //gl.glColor4f(renkler[0][0], renkler[0][1], renkler[0][2], renkler[0][3]);
  gl.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, 4);
  gl.glPopMatrix();

  // left
  gl.glPushMatrix();
  gl.glRotatef(270.0f, 0.0f, 1.0f, 0.0f);
  gl.glTranslatef(0.0f, 0.0f, 1.0f);
  //gl.glColor4f(renkler[1][0], renkler[1][1], renkler[1][2], renkler[1][3]);
  gl.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, 4);
  gl.glPopMatrix();

  // back
  gl.glPushMatrix();
  gl.glRotatef(180.0f, 0.0f, 1.0f, 0.0f);
  gl.glTranslatef(0.0f, 0.0f, 1.0f);
  //gl.glColor4f(renkler[2][0], renkler[2][1], renkler[2][2], renkler[2][3]);
  gl.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, 4);
  gl.glPopMatrix();

  // right
  gl.glPushMatrix();
  gl.glRotatef(90.0f, 0.0f, 1.0f, 0.0f);
  gl.glTranslatef(0.0f, 0.0f, 1.0f);
  //gl.glColor4f(renkler[3][0], renkler[3][1], renkler[3][2], renkler[3][3]);
  gl.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, 4);
  gl.glPopMatrix();

  // top
  gl.glPushMatrix();
  gl.glRotatef(270.0f, 1.0f, 0.0f, 0.0f);
  gl.glTranslatef(0.0f, 0.0f, 1.0f);
  //gl.glColor4f(renkler[4][0], renkler[4][1], renkler[4][2], renkler[4][3]);
  gl.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, 4);
  gl.glPopMatrix();

  // bottom
  gl.glPushMatrix();
  gl.glRotatef(90.0f, 1.0f, 0.0f, 0.0f);
  gl.glTranslatef(0.0f, 0.0f, 1.0f);
  //gl.glColor4f(renkler[5][0], renkler[5][1], renkler[5][2], renkler[5][3]);
  gl.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, 4);
  gl.glPopMatrix();

  gl.glDisableClientState(GL10.GL_TEXTURE_COORD_ARRAY); //doku konaç akatarını devre dışı bırak
  gl.glDisableClientState(GL10.GL_VERTEX_ARRAY);
  gl.glDisable(GL10.GL_CULL_FACE);
     }

    //GL dokusuna bir görsel yükle
     public void dokuYukle(GL10 gl, Context context){
   gl.glGenTextures(1, dokuKunyeleri,0);    //doku künye katarı üret

   gl.glBindTexture(GL10.GL_TEXTURE_2D, dokuKunyeleri[0]);  //künyeyi bağla
   //doku süzgeçlerini kuralım
   //nden 3d değil?neden GL10?GL_TEXTURE_2D nedir?
   //GL_TEXTURE_MIN_FILTER: the texture minifying function is used whenever the pixel being textured maps to an area greater than one texture element.
   //GL_TEXTURE_MAG_FILTER: The texture magnification function is used when the pixel being textured maps to an area less than or equal to one texture element.
   //GL_NEAREST: Returns the value of the texture element that is nearest (in Manhattan distance) to the center of the pixel being textured.
   //GL_LINEAR: Returns the weighted average of the four texture elements that are closest to the center of the pixel being textured.
   gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MIN_FILTER, GL10.GL_NEAREST);
   gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MAG_FILTER, GL10.GL_LINEAR);
   gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_S, GL10.GL_REPEAT);
   gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_T, GL10.GL_REPEAT);
   //"res\drawable\alp.png" den doku görseline bir girdi akışı oluşturalım ,256x256 olmalı
   InputStream istream = context.getResources().openRawResource(doku);
   Bitmap bitmap;
   try{
       //girdiyi okuyup bitmap olarak çöz
       bitmap= BitmapFactory.decodeStream(istream);
   }finally{
       try{
           istream.close();
       }catch (Exception e) {
    }
   }

   //şu anda bağlı olan doku künyesi için , yüklü bitmapden doku oluşştur
   GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap, 0);
   bitmap.recycle();

and my code in the renderer:

        public class MyGLRenderer implements GLSurfaceView.Renderer {
Context context; //App context

//sekillerimiz
Kare dortgen1,dortgen2;
Taban taban;
private Kup kup1,kup2;
private DokuKup dokukup,dokukupSag,dokukupSol;
private DokuKup1 dokukup1;
private ArrayList<DokuKup> sagKupler,solKupler;
public Tus tusYukari,tusAsagi;



//dondurme
float xAcisi =0;
float yAcisi=0;
float xHizi =0;
float yHizi =0;
float z= -6.0f;//cisimlerin kameraya olan uzaklığı
float xKonum=0,zKonum=0;

//daha sonrasında buyutme
float xBoyutu,yBoyutu,zBoyutu;
int A,B,C,F;
int H=3;
int G=4;
int D=20;
int E1=D/H;
int E2=D/G;

//tus konumlari
//float tusX=-6,tusYukariY=3,tusAsagiY=-3;

//isiklandirma
boolean isikAc=true;
private float[] lightAmbient = {0.5f, 0.5f, 0.5f, 1.0f};
private float[] lightDiffuse = {1.0f, 1.0f, 1.0f, 1.0f};
private float[] lightPosition = {0.0f, 0.0f, 2.0f, 1.0f};

//private static float kupAcisi=0,kupHizi=-1.5f;//küp için döngü açısı ve hızı
int currentTextrueFilter=0;

public MyGLRenderer(Context context){
    this.context=context;
    dokukup1= new DokuKup1();
    dortgen1= new Kare();
    dortgen2= new Kare();
    kup1= new Kup();
    kup2= new Kup();


    dokukup=new DokuKup();
    dokukupSag=new DokuKup();
    dokukupSol  = new DokuKup();
    sagKupler= new ArrayList<DokuKup>();
    solKupler= new ArrayList<DokuKup>();
    taban= new Taban();
    dokukup.doku=R.drawable.alp;//farklı gözüksün

    //burada verelim Tuş konumlarini

    float width=256,height=256;
    tusYukari = new Tus(tusX, tusYukariY, width, height);
    tusAsagi = new Tus(tusX, tusAsagiY, width, height);
    tusAsagi.doku = R.drawable.down_button;

}




@Override
public void onDrawFrame(GL10 gl) {
    //clear color and depth buffers using clear value set earlier
    gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);

    //isik acikmi?
    if(isikAc){
        gl.glEnable(GL10.GL_LIGHTING);
    }else{
        gl.glDisable(GL10.GL_LIGHTING);
    }
    //y asagi yukari z öne geriye, x sağa sola
    /*
    gl.glLoadIdentity();
    gl.glTranslatef(0.0f, 0.0f, z);
    gl.glRotatef(xAcisi, 1.0f, 0.0f, 0.0f);
    gl.glRotatef(yAcisi, 0.0f, 1.0f, 0.0f);
    dokukup.ciz(gl);

    gl.glLoadIdentity();
    gl.glTranslatef(0.0f, 0.0f, z);
    gl.glTranslatef(0.0f, (float)(F/2 + (int)(F-0.5)/2), -(D/2));//+1-(int)((F+0.5)/2)
    gl.glScalef(A, F, D/2 -2+1);//(float)(A/2)-1
    gl.glRotatef(xAcisi, 1.0f, 0.0f, 0.0f);
    gl.glRotatef(yAcisi, 0.0f, 1.0f, 0.0f);
    dokukup.ciz(gl);

    */




    gl.glLoadIdentity();
    gl.glScalef(0.05f, 0.05f, 0.05f);
    gl.glTranslatef(0.0f, 0.0f, z-zKonum);
    gl.glRotatef(xAcisi, 1.0f, 0.0f, 0.0f);
    gl.glRotatef(yAcisi, 0.0f, 1.0f, 0.0f);
    dokukup.ciz(gl);



    //hizini her her kare(frame) de yenilediğinde güncelliyoruz
    xAcisi+=xHizi;
    yAcisi+=yHizi;


    //tuslari bastiralim


    gl.glLoadIdentity();
    gl.glTranslatef(3.6f, -1.5f, z);
    tusYukari.ciz(gl);

    gl.glLoadIdentity();
    gl.glTranslatef(2.5f, -1.5f, z);
    tusAsagi.ciz(gl);


}

void boyutAta(int a,int b,int c,int d,int f,int g,int h){
    A=a;B=b;C=c;D=d;F=f;G=g;H=h;
    E1=D/H;
    E2=D/G;
    xBoyutu=d;
    yBoyutu=f;
    zBoyutu=a;
}

@Override
public void onSurfaceChanged(GL10 gl, int width, int height) {
    if(height == 0) height=1;   //to prevent divide by zero.
    float aspect = (float) width/height;

    //set the viewport (display area) to cover the entire window
    gl.glViewport(0, 0, width, height);

    //Setup perspective projection, with aspect ratio mathces viewport
    gl.glMatrixMode(GL10.GL_PROJECTION);    //select projection matrix
    gl.glLoadIdentity();                    //reset projection matrix

    //use perspective projection
    GLU.gluPerspective(gl, 45, aspect, 0.1f, 100.f);

    gl.glMatrixMode(GL10.GL_MODELVIEW);     //select model-view matrix
    gl.glLoadIdentity();                    //reset



}


//Call back when the surface is first or re created
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
    gl.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);// Set color's clear-value to black
    gl.glClearDepthf(1.0f);                 //Set Depth's clear value to farthest
    gl.glEnable(GL10.GL_DEPTH_TEST);        //enables depth-buffer for hidden surface removal
    gl.glDepthFunc(GL10.GL_LEQUAL);         //The type of depth testing to do
    gl.glHint(GL10.GL_PERSPECTIVE_CORRECTION_HINT, GL10.GL_NICEST); //nice perspective view
    gl.glShadeModel(GL10.GL_SMOOTH);        //enable smooth shading of color
    gl.glDisable(GL10.GL_DITHER);           //disable dithering for better performance


    //yüzey her oluşturluduğunda doku kurulmalı
    dokukup.dokuYukle(gl, context);
    gl.glEnable(GL10.GL_TEXTURE_2D);

    // ambient ve diffuse ile isiklari acalim
    gl.glLightfv(GL10.GL_LIGHT1, GL10.GL_AMBIENT, lightAmbient, 0);
    gl.glLightfv(GL10.GL_LIGHT1, GL10.GL_DIFFUSE, lightDiffuse, 0);
    gl.glLightfv(GL10.GL_LIGHT1, GL10.GL_POSITION, lightPosition, 0);
    gl.glEnable(GL10.GL_LIGHT1);   // isiklandirmayi ac
    gl.glEnable(GL10.GL_LIGHT0);   // varasyilan isik ata


}

}

Once again my problem is only 1 texture is mapping over all different objects, i would like to map different textures on different objects.

EDIT: i believe this has to be related to, yet i couldnt find solution.

textureCube.textureLoad(gl, context);
Was it helpful?

Solution

You have to generate two textures and bind them when drawing the corresponding object.

I see that you're creating only one: gl.glGenTextures(1, dokuKunyeleri,0);. In fact, you should create two:

int[] dokuKunyeleri = new int[2];
gl.glGenTextures(2, dokuKunyeleri, 0);

Then, when drawing your objects, you should bind the concerning texture before drawing the related object:

public void ciz(GL10 gl) {
    glBindTexture(GL_TEXTURE_2D, dokuKunyeleri[0 or 1]);
    [...] // draw the object
}

By the way, I think that you don't really need all this stuff in DokuKup.ciz:

gl.glFrontFace(GL10.GL_CCW); //ön yüz saat döngüsünün tersine
gl.glEnable(GL10.GL_CULL_FACE); //yüz toplamayı aç
gl.glCullFace(GL10.GL_BACK);    //arka yüzü topla

as you're disabling them just after. So you should just put them one for all in MyGlRenderer.onSurfaceCreated.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top