X-Git-Url: http://nitlanguage.org diff --git a/lib/mnit/opengles1.nit b/lib/mnit/opengles1.nit index dd5af2d..e2b02bc 100644 --- a/lib/mnit/opengles1.nit +++ b/lib/mnit/opengles1.nit @@ -15,16 +15,13 @@ # limitations under the License. # OpenGL ES1 general support (most of it) -module opengles1 is pkgconfig("glesv1_cm", "x11", "egl") +module opengles1 is pkgconfig("glesv1_cm", "egl") -import mnit_display +import mnit::display in "C header" `{ #include #include - #define GL_GLEXT_PROTOTYPES 1 - #include - #include EGLDisplay mnit_display; EGLSurface mnit_surface; @@ -32,7 +29,6 @@ in "C header" `{ EGLConfig mnit_config; int32_t mnit_width; int32_t mnit_height; - float mnit_zoom; struct mnit_opengles_Texture { GLuint texture; @@ -59,17 +55,12 @@ in "C header" `{ GLenum mnit_opengles_error_code; - struct mnit_opengles_Texture *mnit_opengles_load_image( const uint_least32_t *pixels, int width, int height, int has_alpha ); + struct mnit_opengles_Texture *mnit_opengles_load_image( + const uint_least32_t *pixels, int width, int height, + int width_pow2, int height_pow2, int has_alpha); `} in "C" `{ - #define LOGW(...) ((void)fprintf(stderr, "# warn: %s (%i)\n", __VA_ARGS__)) - #ifdef DEBUG - #define LOGI(...) ((void)fprintf(stderr, "# info: %s (%i)\n", __VA_ARGS__)) - #else - #define LOGI(...) (void)0 - #endif - extern NativeWindowType mnit_window; extern EGLNativeDisplayType mnit_native_display; @@ -90,7 +81,9 @@ in "C" `{ {1.0f, 0.0f} }; - struct mnit_opengles_Texture *mnit_opengles_load_image( const uint_least32_t *pixels, int width, int height, int has_alpha ) + struct mnit_opengles_Texture *mnit_opengles_load_image( + const uint_least32_t *pixels, int width, int height, + int width_pow2, int height_pow2, int has_alpha) { struct mnit_opengles_Texture *image = malloc(sizeof(struct mnit_opengles_Texture)); int format = has_alpha? GL_RGBA: GL_RGB; @@ -104,36 +97,37 @@ in "C" `{ image->src_xo = 0; image->src_yo = 0; - image->src_xi = 1.0; - image->src_yi = 1.0; + image->src_xi = ((float)width)/width_pow2; + image->src_yi = ((float)height)/height_pow2; if ((mnit_opengles_error_code = glGetError()) != GL_NO_ERROR) { - LOGW("error loading image after malloc", mnit_opengles_error_code); + PRINT_ERROR("error loading image after malloc: %i", mnit_opengles_error_code); } glGenTextures(1, &image->texture); if ((mnit_opengles_error_code = glGetError()) != GL_NO_ERROR) { - LOGW("error loading image after glGenTextures", mnit_opengles_error_code); + PRINT_ERROR("error loading image after glGenTextures: %i", mnit_opengles_error_code); } glBindTexture(GL_TEXTURE_2D, image->texture); if ((mnit_opengles_error_code = glGetError()) != GL_NO_ERROR) { - LOGW("error loading image glBindTexture", mnit_opengles_error_code); + PRINT_ERROR("error loading image glBindTexture: %i", mnit_opengles_error_code); } - glTexImage2D( GL_TEXTURE_2D, 0, format, width, height, + glTexImage2D( GL_TEXTURE_2D, 0, format, width_pow2, height_pow2, 0, format, GL_UNSIGNED_BYTE, (GLvoid*)pixels); if ((mnit_opengles_error_code = glGetError()) != GL_NO_ERROR) { - LOGW("error loading image after glTexImage2D", mnit_opengles_error_code); + PRINT_ERROR("error loading image after glTexImage2D: %i", mnit_opengles_error_code); } - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); if ((mnit_opengles_error_code = glGetError()) != GL_NO_ERROR) { - LOGW("error loading image after gtTexParameter", mnit_opengles_error_code); + PRINT_ERROR("error loading image after gtTexParameter: %i", mnit_opengles_error_code); } return image; @@ -149,7 +143,7 @@ class Opengles1Display init do extern_init fun midway_init( format: Int ) do end - fun extern_init: Bool is extern import midway_init `{ + fun extern_init: Bool import midway_init `{ /* initialize OpenGL ES and EGL */ const EGLint attribs[] = { EGL_SURFACE_TYPE, EGL_WINDOW_BIT, @@ -158,7 +152,7 @@ class Opengles1Display EGL_RED_SIZE, 8, EGL_NONE }; - EGLint w, h, dummy, format; + EGLint w, h, format; EGLint numConfigs; EGLConfig config; EGLSurface surface; @@ -166,38 +160,38 @@ class Opengles1Display EGLDisplay display = eglGetDisplay(mnit_native_display); if ( display == EGL_NO_DISPLAY) { - LOGW("Unable to eglGetDisplay", 0); + PRINT_ERROR("Unable to eglGetDisplay"); return -1; } if ( eglInitialize(display, 0, 0) == EGL_FALSE) { - LOGW("Unable to eglInitialize", 0); + PRINT_ERROR("Unable to eglInitialize"); return -1; } if ( eglChooseConfig(display, attribs, &config, 1, &numConfigs) == EGL_FALSE) { - LOGW("Unable to eglChooseConfig", 0); + PRINT_ERROR("Unable to eglChooseConfig"); return -1; } if ( numConfigs == 0 ) { - LOGW("No configs available for egl", 0); + PRINT_ERROR("No configs available for egl"); return -1; } if ( eglGetConfigAttrib(display, config, EGL_NATIVE_VISUAL_ID, &format) == EGL_FALSE) { - LOGW("Unable to eglGetConfigAttrib", 0); + PRINT_ERROR("Unable to eglGetConfigAttrib"); return -1; } /* Used by Android to set buffer geometry */ - Opengles1Display_midway_init(recv, format); + Opengles1Display_midway_init(self, format); surface = eglCreateWindowSurface(display, config, mnit_window, NULL); context = eglCreateContext(display, config, NULL, NULL); if (eglMakeCurrent(display, surface, surface, context) == EGL_FALSE) { - LOGW("Unable to eglMakeCurrent", 0); + PRINT_ERROR("Unable to eglMakeCurrent"); return -1; } @@ -210,12 +204,6 @@ class Opengles1Display mnit_config = config; mnit_width = w; mnit_height = h; - mnit_zoom = 1.0f; - - LOGI("surface", (int)surface); - LOGI("display", (int)display); - LOGI("width", w); - LOGI("height", h); glViewport(0, 0, mnit_width, mnit_height); glMatrixMode(GL_PROJECTION); @@ -228,7 +216,7 @@ class Opengles1Display return 0; `} - fun close is extern `{ + fun close `{ if ( mnit_display != EGL_NO_DISPLAY) { eglMakeCurrent( mnit_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); if ( mnit_context != EGL_NO_CONTEXT) { @@ -244,38 +232,35 @@ class Opengles1Display mnit_surface = EGL_NO_SURFACE; `} - redef fun begin is extern `{ + redef fun begin `{ glClear(GL_COLOR_BUFFER_BIT); glLoadIdentity(); `} - redef fun width: Int is extern `{ + redef fun width: Int `{ return mnit_width; `} - redef fun height: Int is extern `{ + redef fun height: Int `{ return mnit_height; `} - redef fun finish is extern `{ + redef fun finish `{ eglSwapBuffers( mnit_display, mnit_surface ); `} - fun set_as_target is extern `{ - glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0); - `} - - redef fun set_viewport( x, y, w, h ) is extern `{ + redef fun set_viewport( x, y, w, h ) `{ glLoadIdentity(); glViewport(0,0, mnit_width, mnit_height ); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrthof(x, x+w, y+h, y, 0.0f, 1.0f); - mnit_zoom = ((float)w)/mnit_width; glMatrixMode(GL_MODELVIEW); glFrontFace( GL_CW ); `} - redef fun blit( image, x, y ) is extern `{ + redef fun blit(image, x, y) do native_blit(image, x.to_f, y.to_f) + + private fun native_blit(image: Opengles1Image, x, y: Float) `{ GLfloat texture_coord[4][2] = { {image->src_xo, image->src_yi}, @@ -312,18 +297,20 @@ class Opengles1Display glDisable(GL_TEXTURE_2D); if ((mnit_opengles_error_code = glGetError()) != GL_NO_ERROR) { - LOGW("error drawing", mnit_opengles_error_code); + PRINT_ERROR("error drawing: %i", mnit_opengles_error_code); } `} - redef fun blit_centered( img, x, y ) + redef fun blit_centered(img, x, y) do - x = x - img.center_x - y = y - img.center_y - blit( img, x, y ) + x = x.sub(img.center_x) + y = y.sub(img.center_y) + blit(img, x, y) end - redef fun blit_rotated( image, x, y, angle ) is extern `{ + redef fun blit_rotated(image, x, y, angle) do native_blit_rotated(image, x.to_f, y.to_f, angle) + + private fun native_blit_rotated(image: Opengles1Image, x, y, angle: Float) `{ GLfloat texture_coord[4][2] = { {image->src_xo, image->src_yi}, @@ -360,12 +347,19 @@ class Opengles1Display glDisable(GL_TEXTURE_2D); if ((mnit_opengles_error_code = glGetError()) != GL_NO_ERROR) { - LOGW("error drawing", mnit_opengles_error_code); + PRINT_ERROR("error drawing: %i", mnit_opengles_error_code); } `} # a = top left, b = bottom left, c = bottom right, d = top right - redef fun blit_stretched( image, ax, ay, bx, by, cx, cy, dx, dy ) is extern `{ + redef fun blit_stretched(image, ax, ay, bx, by, cx, cy, dx, dy) + do + native_blit_stretched(image, + ax.to_f, ay.to_f, bx.to_f, by.to_f, + cx.to_f, cy.to_f, dx.to_f, dy.to_f) + end + + private fun native_blit_stretched(image: I, ax, ay, bx, by, cx, cy, dx, dy: Float) `{ GLfloat texture_coord[4][2] = { {image->src_xo, image->src_yi}, @@ -408,16 +402,16 @@ class Opengles1Display glDisable(GL_TEXTURE_2D); if ((mnit_opengles_error_code = glGetError()) != GL_NO_ERROR) { - LOGW("error drawing", mnit_opengles_error_code); + PRINT_ERROR("error drawing: %i", mnit_opengles_error_code); } `} - redef fun clear( r, g, b: Float ) is extern `{ + redef fun clear( r, g, b: Float ) `{ glClearColor( r, g, b, 1.0 ); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); `} - fun clear_alpha( r, g, b, a: Float ) is extern `{ + fun clear_alpha( r, g, b, a: Float ) `{ glClearColor( r, g, b, a ); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); `} @@ -434,136 +428,44 @@ end extern class Opengles1Image in "C" `{struct mnit_opengles_Texture *`} super Image - redef fun destroy is extern `{ free( recv ); `} + redef fun destroy `{ free( self ); `} - redef fun width: Int is extern `{ return recv->width; `} - redef fun height: Int is extern `{ return recv->height; `} + redef fun width: Int `{ return self->width; `} + redef fun height: Int `{ return self->height; `} - fun center_x: Int `{ return recv->center_x; `} - fun center_y: Int `{ return recv->center_y; `} + fun center_x: Int `{ return self->center_x; `} + fun center_y: Int `{ return self->center_y; `} - redef fun scale=( v: Float ) is extern `{ - recv->scale = v; - recv->center_x = v*recv->width/2; - recv->center_y = v*recv->height/2; + redef fun scale=( v: Float ) `{ + self->scale = v; + self->center_x = v*self->width/2; + self->center_y = v*self->height/2; `} - redef fun scale: Float is extern `{ return recv->scale; `} + redef fun scale: Float `{ return self->scale; `} - redef fun blended=( v: Bool ) is extern `{ recv->blended = v; `} - redef fun blended: Bool is extern `{ return recv->blended; `} + redef fun blended=( v: Bool ) `{ self->blended = v; `} + redef fun blended: Bool `{ return self->blended; `} # inherits scale and blend from source - redef fun subimage( x, y, w, h: Int ): Image is extern import Opengles1Image.as( Image ) `{ + redef fun subimage( x, y, w, h: Int ): Image import Opengles1Image.as( Image ) `{ struct mnit_opengles_Texture* image = malloc( sizeof( struct mnit_opengles_Texture ) ); - image->texture = recv->texture; + image->texture = self->texture; image->width = w; image->height = h; - image->center_x = recv->scale*w/2; - image->center_y = recv->scale*h/2; - image->scale = recv->scale; - image->blended = recv->blended; - - image->src_xo = ((float)x)/recv->width; - image->src_yo = ((float)y)/recv->height; - image->src_xi = ((float)x+w)/recv->width; - image->src_yi = ((float)y+h)/recv->height; + image->center_x = self->scale*w/2; + image->center_y = self->scale*h/2; + image->scale = self->scale; + image->blended = self->blended; + + float r_dx = self->src_xi - self->src_xo; + float r_dy = self->src_yi - self->src_yo; + image->src_xo = self->src_xo + ((float)x)/self->width*r_dx; + image->src_yo = self->src_yo + ((float)y)/self->height*r_dy; + image->src_xi = self->src_xo + ((float)x+w)/self->width*r_dx; + image->src_yi = self->src_yo + ((float)y+h)/self->height*r_dy; return Opengles1Image_as_Image( image ); `} end - -# FIXME this class is broken -extern class Opengles1DrawableImage in "C" `{struct mnit_opengles_DrawableTexture*`} - super DrawableImage - new ( w, h: Int ) is extern `{ - struct mnit_opengles_DrawableTexture *image = - malloc( sizeof(struct mnit_opengles_DrawableTexture) ); - - /* texture */ - glGenTextures(1, &image->super.texture); - glBindTexture(GL_TEXTURE_2D, image->super.texture); - glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, w, h, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR ); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR ); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); - /* glTexParameteri(GL_TEXTURE_2D, GL_GENERATE_MIPMAP, GL_TRUE); // automatic mipmap generation included in OpenGL v1.4c */ - glBindTexture(GL_TEXTURE_2D, 0); - - /* fbo */ - glGenFramebuffersOES( 1, &image->fbo ); - glBindFramebufferOES( GL_FRAMEBUFFER_OES, image->fbo ); - glFramebufferTexture2DOES(GL_FRAMEBUFFER_OES, - GL_COLOR_ATTACHMENT0_OES, - GL_TEXTURE_2D, - image->super.texture, - 0 ); - - /* depth */ - glGenRenderbuffersOES(1, &image->depth); - glBindRenderbufferOES(GL_RENDERBUFFER_OES, image->depth); - glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_DEPTH_COMPONENT16_OES, - w, h); - glBindRenderbufferOES(GL_RENDERBUFFER_OES, 0); - glFramebufferRenderbufferOES( GL_FRAMEBUFFER_OES, - GL_DEPTH_ATTACHMENT_OES, - GL_RENDERBUFFER_OES, - image->depth ); - - /* tex framebuffer */ - glGenRenderbuffersOES(1, &image->color); - glBindRenderbufferOES(GL_RENDERBUFFER_OES, image->color); - glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_RGBA8_OES, w, h); - glFramebufferRenderbufferOES(GL_FRAMEBUFFER_OES, GL_COLOR_ATTACHMENT0_OES, GL_RENDERBUFFER_OES, image->color ); - - if ( glCheckFramebufferStatusOES( GL_FRAMEBUFFER_OES ) != GL_FRAMEBUFFER_COMPLETE_OES ) - { - LOGW("framebuffer not set", glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES)); - exit(1); - } - - image->super.width = w; - image->super.height = h; - image->super.center_x = w/2; - image->super.center_y = h/2; - image->super.scale = 1.0f; - image->super.blended = 0; - - if ((mnit_opengles_error_code = glGetError()) != GL_NO_ERROR) { - LOGW("gl error in Opengles1DrawableImage::init", mnit_opengles_error_code); - exit(1); - } - - return image; - `} - - fun set_as_target is extern `{ - LOGI( "sat %i", recv->fbo ); - glBindFramebufferOES(GL_FRAMEBUFFER_OES, recv->fbo); - if (glGetError() != GL_NO_ERROR) LOGW("gl error", 0); - /*glGetIntegerv(GL_FRAMEBUFFER_BINDING_OES,&recv->fbo); - if (glGetError() != GL_NO_ERROR) LOGW( "gl error a");*/ - glViewport(0, 0, recv->super.width, recv->super.height); - - glMatrixMode(GL_PROJECTION); - glLoadIdentity(); - glOrthof(0.0f, recv->super.width, recv->super.height, 0.0f, 0.0f, 1.0f); - glMatrixMode(GL_MODELVIEW); - glFrontFace( GL_CW ); - - glClearColor( 0.0f, 1.0f, 1.0f, 1.0f ); - glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); - `} - - fun unset_as_target is extern `{ - glFlush(); - /*glBindTexture(GL_TEXTURE_2D, recv->super.texture); - glGenerateMipmapOES(GL_TEXTURE_2D); - glBindTexture(GL_TEXTURE_2D, 0);*/ - glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0); - if (glGetError() != GL_NO_ERROR) LOGW("gl error", 0); - `} -end -