SDL_nximage.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     Copyright (C) 2001  Hsieh-Fu Tsai
  5.     This library is free software; you can redistribute it and/or
  6.     modify it under the terms of the GNU Library General Public
  7.     License as published by the Free Software Foundation; either
  8.     version 2 of the License, or (at your option) any later version.
  9.     This library is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.     Library General Public License for more details.
  13.     You should have received a copy of the GNU Library General Public
  14.     License along with this library; if not, write to the Free
  15.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  16.     Sam Lantinga
  17.     slouken@libsdl.org
  18.     
  19.     Hsieh-Fu Tsai
  20.     clare@setabox.com
  21. */
  22. #include <stdlib.h>
  23. #include "SDL_error.h"
  24. #include "SDL_nximage_c.h"
  25. void NX_NormalUpdate (_THIS, int numrects, SDL_Rect * rects)
  26. {
  27.     int           i, j, xinc, yinc, destinc ;
  28.     int           x, y, w, h ;
  29.     unsigned char * src = NULL, * dest = NULL ;
  30.             
  31.     Dprintf ("enter NX_NormalUpdaten") ;
  32.     xinc = this -> screen -> format -> BytesPerPixel ;
  33.     yinc = this -> screen -> pitch ;
  34.         
  35.     for (i = 0; i < numrects; ++ i) {
  36.         x = rects [i].x, y = rects [i].y ;
  37.         w = rects [i].w, h = rects [i].h ;
  38.         src = SDL_Image + y * yinc + x * xinc ;
  39.         dest = Image_buff ;
  40.         destinc = w * xinc ;
  41.         // apply GammaRamp table
  42. #if (defined (NANOX_PIXEL_RGB) || defined (NANOX_PIXEL_0888) || 
  43.      defined (NANOX_PIXEL_888))
  44.         if (GammaRamp_R && GammaRamp_G && GammaRamp_B) {
  45.             Uint8 * ptr ;
  46.             int   k ;
  47.             for (j = h; j > 0; -- j, src += yinc) {
  48.                 ptr = src - 1 ;
  49.                 for (k = w; k > 0; -- k) {
  50. #ifdef NANOX_PIXEL_RGB
  51.                     ptr += 2 ;
  52. #endif
  53. #ifdef NANOX_PIXEL_0888
  54.                     ptr += 2 ;
  55. #endif
  56. #ifdef NANOX_PIXEL_888
  57.                     ++ ptr ;
  58. #endif
  59.                     (* ptr) = GammaRamp_B [(* ptr)] ;
  60.                     ++ ptr ;
  61.                     (* ptr) = GammaRamp_G [(* ptr)] ;
  62.                     ++ ptr ;
  63.                     (* ptr) = GammaRamp_R [(* ptr)] ;
  64.                 }
  65.             }
  66.             src = SDL_Image + y * yinc + x * xinc ;
  67.         }
  68. #endif // apply Gamma table
  69.         for (j = h; j > 0; -- j, src += yinc, dest += destinc) {
  70.             memcpy (dest, src, destinc) ;
  71.         }
  72.         if (currently_fullscreen) {
  73.             GrArea (FSwindow, SDL_GC, x + OffsetX, y + OffsetY, w, h, Image_buff, 
  74.                 pixel_type) ;
  75.         } else {
  76.             GrArea (SDL_Window, SDL_GC, x, y, w, h, Image_buff, pixel_type) ;
  77.         }
  78.     }
  79.     Dprintf ("leave NX_NormalUpdaten") ;
  80. }
  81. int NX_SetupImage (_THIS, SDL_Surface * screen)
  82. {
  83.     int size = screen -> h * screen -> pitch ;
  84.     
  85.     Dprintf ("enter NX_SetupImagen") ;
  86.     screen -> pixels = (void *) malloc (size) ;
  87.     Image_buff = (unsigned char *) malloc (size) ;
  88.     if (screen -> pixels == NULL || Image_buff == NULL) {
  89.         free (screen -> pixels) ;
  90.         free (Image_buff) ;
  91.         SDL_OutOfMemory () ;
  92.         return -1 ;
  93.     }
  94.     SDL_Image = (unsigned char *) screen -> pixels ;
  95.     this -> UpdateRects = NX_NormalUpdate ;
  96.     Dprintf ("leave NX_SetupImagen") ;
  97.     return 0 ;
  98. }
  99. void NX_DestroyImage (_THIS, SDL_Surface * screen)
  100. {
  101.     Dprintf ("enter NX_DestroyImagen") ;
  102.     
  103.     if (SDL_Image) free (SDL_Image) ;
  104.     if (Image_buff) free (Image_buff) ;
  105.     if (screen) screen -> pixels = NULL ;
  106.     
  107.     Dprintf ("leave NX_DestroyImagen") ;
  108. }
  109. int NX_ResizeImage (_THIS, SDL_Surface * screen, Uint32 flags)
  110. {
  111.     int            retval ;
  112.     GR_SCREEN_INFO si ;
  113.     Dprintf ("enter NX_ResizeImagen") ;
  114.     NX_DestroyImage (this, screen) ;
  115.     retval = NX_SetupImage (this, screen) ;
  116.     GrGetScreenInfo (& si) ;
  117.     OffsetX = (si.cols - screen -> w) / 2 ;
  118.     OffsetY = (si.rows - screen -> h) / 2 ;
  119.     
  120.     Dprintf ("leave NX_ResizeImagen") ;
  121.     return retval ;
  122. }
  123. void NX_RefreshDisplay (_THIS)
  124. {
  125.     Dprintf ("enter NX_RefreshDisplayn") ;
  126.     // Don't refresh a display that doesn't have an image (like GL)
  127.     if (! SDL_Image) {
  128.         return;
  129.     }
  130.     if (currently_fullscreen) {
  131.         GrArea (FSwindow, SDL_GC, OffsetX, OffsetY, this -> screen -> w, 
  132.             this -> screen -> h, SDL_Image, pixel_type) ;
  133.     } else {
  134.         GrArea (SDL_Window, SDL_GC, 0, 0, this -> screen -> w, 
  135.             this -> screen -> h, SDL_Image, pixel_type) ;
  136.     }
  137.     Dprintf ("leave NX_RefreshDisplayn") ;
  138. }