I have written code for placing the texture image on sphere and to rotate the sphere on swipe action. But i am not able to add the texture on sphere. Please help me to fix the issue.
GLsurfaceview class code:
public class MyGLSurfaceView extends GLSurfaceView {
MyGLRenderer mgr;
private final float TOUCH_SCALE_FACTOR = 180.0f / 320.0f;
// private final float TOUCH_SCALE_FACTOR = -6.0F;
// private final float TRACKBALL_SCALE_FACTOR = 36.0f;
private float mPreviousX;
private float mPreviousY;
public MyGLSurfaceView(Context context) {
super(context);
setEGLContextClientVersion(1);
// setEGLConfigChooser(false);
setEGLConfigChooser(8, 8, 8, 8, 16, 0);
getHolder().setFormat(PixelFormat.TRANSLUCENT);
setZOrderOnTop(true);
mgr = new MyGLRenderer(context);
setRenderer(mgr);
// Render the view only when there is a change in the drawing data
setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY);
}
@Override
public boolean onTouchEvent(MotionEvent e) {
float x = e.getX();
float y = e.getY();
switch (e.getAction()) {
case MotionEvent.ACTION_MOVE:
float dx = x - mPreviousX;
float dy = y - mPreviousY;
mgr.mAngleY = (mgr.mAngleY + (int) (dx * TOUCH_SCALE_FACTOR) + 360) % 360;
mgr.mAngleX = (mgr.mAngleX + (int) (dy * TOUCH_SCALE_FACTOR) + 360) % 360;
System.out.println("==========================="+mgr.mAngleX+"======"+mgr.mAngleY);
break;
}
mPreviousX = x;
mPreviousY = y;
return true;
}
}
Renderer class.
public class MyGLRenderer implements GLSurfaceView.Renderer {
private static int imgfive = R.drawable.imgfive;
private static int imgfour = R.drawable.imgfour;
private static int imgthree = R.drawable.imgthree;
private static int imgtwo = R.drawable.imgtwo;
private static int imgone = R.drawable.imgone;
Context context;
SphereGenerator sp;
public float mAngleX = 0.0f;
public float mAngleY = 0.0f;
public float mAngleZ = 0.0f;
public MyGLRenderer(Context context) {
// Set up the data-array buffers for these shapes ( NEW )
sp = new SphereGenerator(15, 24, 24, 2.0f); // ( NEW )
this.context = context;
// square = new Square();
}
// Call back when the surface is first created or re-created
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
sp.loadGLTexture(gl, context);
gl.glEnable(GL10.GL_TEXTURE_2D);
gl.glClearColor(0.0f, 0.0f, 0.0f, 0.2f); // 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.glDisable(GL10.GL_DEPTH_TEST);
gl.glEnable(GL10.GL_BLEND);
gl.glBlendFunc(GL10.GL_SRC_ALPHA, GL10.GL_ONE_MINUS_SRC_COLOR);
gl.glDepthFunc(GL10.GL_NEVER); // 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
// You OpenGL|ES initialization code here
// ......
}
// Call back after onSurfaceCreated() or whenever the window's size changes
@Override
public void onSurfaceChanged(GL10 gl, int width, int height) {
if (height == 0)
height = 1; // To prevent divide by zero
float aspect = (float) width / (float) height;
// Set the viewport (display area) to cover the entire window
gl.glViewport(0, 0, width, height);
// Setup perspective projection, with aspect ratio matches viewport
gl.glMatrixMode(GL10.GL_PROJECTION); // Select projection matrix
gl.glLoadIdentity(); // Reset projection matrix
// Use perspective projection
GLU.gluPerspective(gl, 45.0f, aspect, 0.1f, 100.f);
gl.glMatrixMode(GL10.GL_MODELVIEW); // Select model-view matrix
gl.glLoadIdentity(); // Reset
// You OpenGL|ES display re-sizing code here
// ......
}
// Call back to draw the current frame.
@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);
gl.glLoadIdentity(); // Reset model-view matrix ( NEW )
gl.glTranslatef(0.0f, 0.0f, -5.0f); // Translate left and into the
// screen ( NEW )
gl.glRotatef(mAngleX, 0.0f, 1.0f, 0.0f);
gl.glRotatef(mAngleY, 1.0f, 0.0f, 0.0f);
sp.draw(gl); // Draw sphere ( NEW )
// You OpenGL|ES rendering code here
// ......
}
}
Sphere class
public class SphereGenerator {
FloatBuffer strip, fan_top, fan_bottom;
FloatBuffer tex_strip, tex_fan_top, tex_fan_bottom;
int[] textureIDs = new int[1]; // Array for 1 texture-ID (NEW)
float radius;
int stacks, slices;
int tex;
float color[] = { 0.63671875f, 0.76953125f, 0.22265625f, 0.0f };
private int[] textures = new int[1];
public SphereGenerator(int tex, int stacks, int slices, float radius) {
this.tex = tex;
this.stacks = stacks;
this.slices = slices;
this.radius = radius;
unitSphere(stacks, slices);
}
public void draw(GL10 gl) {
gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[0]);
gl.glVertexPointer(3, GL10.GL_FLOAT, 0, fan_top);
gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
// Set the face rotation
gl.glFrontFace(GL10.GL_CW);
gl.glNormalPointer(GL10.GL_FLOAT, 0, fan_top);
gl.glEnableClientState(GL10.GL_NORMAL_ARRAY);
gl.glTexCoordPointer(2, GL10.GL_FLOAT, 0, tex_fan_top);
gl.glEnableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
gl.glDrawArrays(GL10.GL_TRIANGLE_FAN, 0, slices + 2);
gl.glColor4f(0.63671875f, 0.76953125f, 0.22265625f, 0.2f); // to add
// color to
// the
// sphere
gl.glVertexPointer(3, GL10.GL_FLOAT, 0, strip);
gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
gl.glNormalPointer(GL10.GL_FLOAT, 0, strip);
gl.glEnableClientState(GL10.GL_NORMAL_ARRAY);
gl.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, (slices + 1) * 2 * stacks);
gl.glVertexPointer(3, GL10.GL_FLOAT, 0, fan_bottom);
gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);
gl.glNormalPointer(GL10.GL_FLOAT, 0, fan_bottom);
gl.glEnableClientState(GL10.GL_NORMAL_ARRAY);
gl.glTexCoordPointer(2, GL10.GL_FLOAT, 0, tex_fan_bottom);
gl.glEnableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
gl.glDrawArrays(GL10.GL_TRIANGLE_FAN, 0, slices + 2);
// Disable the client state before leaving
gl.glDisableClientState(GL10.GL_VERTEX_ARRAY);
gl.glDisableClientState(GL10.GL_TEXTURE_COORD_ARRAY);
}
protected FloatBuffer[] makeEndCap(int stacks, int slices, boolean top) {
// Calculate the Triangle Fan for the endcaps
int triangleFanVertexCount = slices + 2;
float dtheta = (float) (2.0 * Math.PI / slices);
float drho = (float) (Math.PI / stacks);
float[] fanVertices = new float[triangleFanVertexCount * 3];
float[] fanTextures = new float[triangleFanVertexCount * 2];
float theta = 0;
float sin_drho = (float) Math.sin(drho);
// float cos_drho = (float)Math.cos(Math.PI / stacks);
int tex_index = 0;
fanTextures[tex_index++] = (top ? 0 : 1.0f);
fanTextures[tex_index++] = 0.5f;
int index = 0;
fanVertices[index++] = 0.0f;
fanVertices[index++] = 0.0f;
fanVertices[index++] = (top ? 1 : -1);
for (int j = 0; j <= slices; j++) {
theta = (j == slices) ? 0.0f : j * (top ? 1 : -1) * dtheta;
float x = (float) -Math.sin(theta) * sin_drho;
float y = (float) Math.cos(theta) * sin_drho;
float z = (top ? 1 : -1) * (float) Math.cos(drho);
fanTextures[tex_index++] = x;
fanTextures[tex_index++] = y;
fanVertices[index++] = x;
fanVertices[index++] = y;
fanVertices[index++] = z;
}
FloatBuffer[] result = new FloatBuffer[2];
result[0] = GLTutorialBase.makeFloatBuffer(fanVertices);
result[1] = GLTutorialBase.makeFloatBuffer(fanTextures);
return result;
}
protected void unitSphere(int stacks, int slices) {
float drho = (float) (Math.PI / stacks);
float dtheta = (float) (2.0 * Math.PI / slices);
FloatBuffer[] buffs = makeEndCap(stacks, slices, true);
fan_top = buffs[0];
tex_fan_top = buffs[1];
buffs = makeEndCap(stacks, slices, false);
fan_bottom = buffs[0];
tex_fan_bottom = buffs[1];
// Calculate the triangle strip for the sphere body
int triangleStripVertexCount = (slices + 1) * 2 * stacks;
float[] stripVertices = new float[triangleStripVertexCount * 3];
int index = 0;
for (int i = 0; i < stacks; i++) {
float rho = i * drho;
for (int j = 0; j <= slices; j++) {
float theta = (j == slices) ? 0.0f : j * dtheta;
float x = (float) (-Math.sin(theta) * Math.sin(rho));
float y = (float) (Math.cos(theta) * Math.sin(rho));
float z = (float) Math.cos(rho);
// TODO: Implement texture mapping if texture used
// TXTR_COORD(s, t);
stripVertices[index++] = x;
stripVertices[index++] = y;
stripVertices[index++] = z;
x = (float) (-Math.sin(theta) * Math.sin(rho + drho));
y = (float) (Math.cos(theta) * Math.sin(rho + drho));
z = (float) Math.cos(rho + drho);
// TODO: Implement texture mapping if texture used
// TXTR_COORD(s, t);
stripVertices[index++] = x;
stripVertices[index++] = y;
stripVertices[index++] = z;
}
}
tex_fan_top.position(0);
strip = GLTutorialBase.makeFloatBuffer(stripVertices);
}
public void loadGLTexture(GL10 gl, Context context) {
// loading texture
Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(),
R.drawable.imgfive);
// generate one texture pointer
gl.glGenTextures(1, textures, 0);
// ...and bind it to our array
gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[0]);
// create nearest filtered texture
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);
// Use Android GLUtils to specify a two-dimensional texture image from
// our bitmap
GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap, 0);
// Clean up
bitmap.recycle();
}