I know there is a lot of stuff even on stackoverflow about this theme/problem but i really cant get it. Im in this problem for several hours now.
public Vector select(float x, float y)
{
int viewport[] = { 0, 0, width , height};
float realY = ((float) ( height) - y);
float near[] = { 0.0f, 0.0f, 0.0f, 0.0f };
float far[] = { 0.0f, 0.0f, 0.0f, 0.0f };
GLU.gluUnProject(x, realY, 0, mg.mModelView, 0, mg.mProjection , 0, viewport, 0, near, 0);
GLU.gluUnProject(x, realY, 1, mg.mModelView, 0, mg.mProjection, 0, viewport, 0, far, 0);
float xr = near[0] / near[3];
float yr = near[1] / near[3];
float zr = near[2] / near[3];
return new Vector(xr,yr,zr);
}
/**
GLU.gluLookAt( gl, me.position.x, me.position.y, me.position.z, me.position.x, 0, me.position.z+1, 0, 1, 0 );
**/
1) Is there a possibility yet to read the z buffer with
glReadPixels(winX, winY, 1, 1, GL_DEPTH_COMPONENT, GL_FLOAT, winZ);
The GL11Extension class implements the GL_DEPTH_COMPONENT constant for glReadPixels or what? http://developer.android.com/reference/javax/microedition/khronos/opengles/GL11ExtensionPack.html#GL_DEPTH_COMPONENT
2) Or is it possible to calculate the z-Buffer manuel with my glulookat positions ?
3) Or how to calculate the collision with the near and far position.
Thank you for reading :)
