मैं ऐसी ही स्थिति में था।
जिस तरह से मैंने ओपन के साथ शुरुआत की थी वह बहुत ही बुनियादी GLSurfaceView नमूने / डेमो को देखकर शुरू किया था।
प्रारंभ करें, अपनी एप्लिकेशन गतिविधि सेट करके, और मूल कैनवास सेट अप करें।
प्रतिकृति द्वीप स्रोत कोड फ़ाइल में एक लूट ले लो: GameRenderer.java 2 डी (स्प्राइट) प्रतिपादन के लिए उचित जीएल झंडे के साथ अपने कैनवास को कैसे स्थापित किया जाए। आपको वास्तव में प्रतिकृति द्वीप के एक ही लेखक द्वारा SpriteMethodTest पर नज़र डालनी चाहिए: http://code.google.com/p/apps-for-android/source/browse/trunk/SpriteMethodTest
यह प्रश्न देखें कि मैंने अपना कोड कहाँ पोस्ट किया था: कैनवस - एंड्रॉइड को बदलने के लिए ओपनजीएल का उपयोग करना
अपना कैनवास सेट करने के बाद, आप कुछ इस तरह से कॉल करना शुरू करते हैं: gl.glClear (GL10.GL_COLOR_BUFFER_BIT);
उसके बाद आप स्प्राइट रेंडर करने के लिए तैयार हैं। सबसे पहले, आपको स्प्राइट को एक बनावट में लोड करने की आवश्यकता होगी: http://qdevarena.blogspot.com/2009/02/how-to-load-texture-in-android-opengl.html
हालाँकि, यह ट्यूटोरियल है जिसने मुझे लोडिंग स्प्राइट के साथ वास्तव में मदद की:
http://tkcodesharing.blogspot.com/2008/05/working-with-textures-in-androids.html
यह मैं इसे कैसे करता हूं, मेरे पास Texture.java नामक एक वर्ग है:
public class Texture
{
/*Begin public declarations*/
public float x = 0;
public float y = 0;
public float z = 0;
public float width = 0;
public float height = 0;
/*Begin Private Declarations*/
private GL10 gl;
public int[] texture; //holds the texture in integer form
private int texture_name;
private int[] mCropWorkspace;
private final BitmapFactory.Options sBitmapOptions;
/*Begin Methods*/
public Texture( GL10 gl_obj )
{
gl = gl_obj;
texture = new int[1];
mCropWorkspace = new int[4];
sBitmapOptions = new BitmapFactory.Options();
sBitmapOptions.inPreferredConfig = Bitmap.Config.RGB_565;
//Log.d(TAG, "Initializing Texture Object");
}
public int get_texture_name( )
{
return texture_name;
}
/*Loads the resource to memory*/
public boolean Load( Bitmap bitmap ) //rename this to glLoad and don't have it as an initializer parameter
{
/*many thanks to sprite method test if this works*/
if ( gl == null )
{
Log.e(TAG, "Failed to load resource. Context/GL is NULL");
return false;
}
int error;
int textureName = -1;
gl.glGenTextures(1, texture, 0);
textureName = texture[0];
//Log.d(TAG, "Generated texture: " + textureName);
gl.glBindTexture(GL10.GL_TEXTURE_2D, textureName);
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_CLAMP_TO_EDGE);
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_T, GL10.GL_CLAMP_TO_EDGE);
gl.glTexEnvf(GL10.GL_TEXTURE_ENV, GL10.GL_TEXTURE_ENV_MODE, GL10.GL_REPLACE);
GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap, 0);
mCropWorkspace[0] = 0;
mCropWorkspace[1] = bitmap.getHeight();
mCropWorkspace[2] = bitmap.getWidth();
mCropWorkspace[3] = -bitmap.getHeight();
((GL11) gl).glTexParameteriv(GL10.GL_TEXTURE_2D,
GL11Ext.GL_TEXTURE_CROP_RECT_OES, mCropWorkspace, 0);
error = gl.glGetError();
if (error != GL10.GL_NO_ERROR)
{
Log.e(TAG, "GL Texture Load Error: " + error);
}
//Log.d(TAG, "Loaded texture: " + textureName);
return true;
}
}
तब मेरे onDrawFrame () विधि में मैं बस यही करता हूं:
Texture texture = ...
gl.glBindTexture(GL10.GL_TEXTURE_2D, texture.texture[0]);
((GL11Ext) gl).glDrawTexfOES((float)(draw_x + 0.5), (float)(draw_y + 0.5), 0, tile_width, tile_height);
यह आपको एक ओपनजीएल कैनवास पर 2 डी स्प्राइट ड्राइंग के साथ जाना चाहिए। मैंने देखा है कि इस पर कोई सीधा ट्यूटोरियल नहीं है। उम्मीद है कि भविष्य में मैं अपने देव ब्लॉग में एक पोस्ट करूंगा: http://developingthedream.blogspot.com/
and I'm not willing to learn it
यहाँ एक सवाल शुरू करने का यह बहुत अच्छा तरीका नहीं है