svgalib.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:9k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * svgalib.c : SVGAlib plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 the VideoLAN team
  5.  * $Id: ae99b3452922115ed140c74a8ddae8aea6412f4e $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_vout.h>
  32. #include <vlc_interface.h>
  33. #include <vga.h>
  34. #include <vgagl.h>
  35. #include <vgakeyboard.h>
  36. /*****************************************************************************
  37.  * Local prototypes
  38.  *****************************************************************************/
  39. static int  Create    ( vlc_object_t * );
  40. static void Destroy   ( vlc_object_t * );
  41. static int  Init      ( vout_thread_t * );
  42. static void End       ( vout_thread_t * );
  43. static int  Manage    ( vout_thread_t * );
  44. static void Display   ( vout_thread_t *, picture_t * );
  45. static void SetPalette( vout_thread_t *, uint16_t *, uint16_t *, uint16_t * );
  46. /*****************************************************************************
  47.  * Module descriptor
  48.  *****************************************************************************/
  49. vlc_module_begin ()
  50.     set_shortname( "SVGAlib" )
  51.     set_category( CAT_VIDEO )
  52.     set_subcategory( SUBCAT_VIDEO_VOUT )
  53.     set_description( N_("SVGAlib video output") )
  54.     set_capability( "video output", 0 )
  55.     set_callbacks( Create, Destroy )
  56.     linked_with_a_crap_library_which_uses_atexit ()
  57. vlc_module_end ()
  58. /*****************************************************************************
  59.  * vout_sys_t: video output descriptor
  60.  *****************************************************************************
  61.  * This structure is part of the video output thread descriptor.
  62.  * It describes the SVGAlib specific properties of an output thread.
  63.  *****************************************************************************/
  64. struct vout_sys_t
  65. {
  66.     int i_vgamode;
  67. };
  68. /*****************************************************************************
  69.  * Create: allocates video thread
  70.  *****************************************************************************
  71.  * This function allocates and initializes a vout method.
  72.  *****************************************************************************/
  73. static int Create( vlc_object_t *p_this )
  74. {
  75.     vout_thread_t *p_vout = (vout_thread_t *)p_this;
  76.     /* Allocate instance and initialize some members */
  77.     p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
  78.     if( p_vout->p_sys == NULL )
  79.     {
  80.         return VLC_ENOMEM;
  81.     }
  82.     /* FIXME: find a way to test for SVGAlib availability. We cannot call
  83.      * vga_init from here because it needs to be closed from the same thread
  84.      * and we might give away the video output to another thread. Bah, it
  85.      * doesn't matter anyway ... SVGAlib is being an UGLY DIRTY PIG and calls
  86.      * atexit() and exit() so what can we do? */
  87.     p_vout->pf_init = Init;
  88.     p_vout->pf_end = End;
  89.     p_vout->pf_manage = Manage;
  90.     p_vout->pf_render = NULL;
  91.     p_vout->pf_display = Display;
  92.     return VLC_SUCCESS;
  93. }
  94. /*****************************************************************************
  95.  * Init: initialize video thread
  96.  *****************************************************************************/
  97. static int Init( vout_thread_t *p_vout )
  98. {
  99.     int i_index;
  100.     picture_t *p_pic;
  101.     I_OUTPUTPICTURES = 0;
  102.     /* SVGAlib shut up! */
  103.     vga_disabledriverreport();
  104.     /* We cannot call vga_init() in Create() because it has to be run
  105.      * from the same thread as the other vga calls. */
  106.     vga_init();
  107.     /* Check that we have a 8bpp mode available */
  108.     p_vout->p_sys->i_vgamode = vga_getdefaultmode();
  109.     if( p_vout->p_sys->i_vgamode == -1
  110.          || vga_getmodeinfo(p_vout->p_sys->i_vgamode)->bytesperpixel != 1 )
  111.     {
  112.         p_vout->p_sys->i_vgamode = G320x200x256;
  113.     }
  114.     if( !vga_hasmode( p_vout->p_sys->i_vgamode ) )
  115.     {
  116.         msg_Err( p_vout, "mode %i not available", p_vout->p_sys->i_vgamode );
  117.         return VLC_EGENERIC;
  118.     }
  119.     vga_setmode( p_vout->p_sys->i_vgamode );
  120.     gl_setcontextvga( p_vout->p_sys->i_vgamode );
  121.     gl_enableclipping();
  122.     if( keyboard_init() )
  123.     {
  124.         msg_Err( p_vout, "could not initialize keyboard" );
  125.         vga_setmode( TEXT );
  126.         return VLC_EGENERIC;
  127.     }
  128.     /* Just in case */
  129.     keyboard_translatekeys( TRANSLATE_CURSORKEYS |
  130.                             TRANSLATE_KEYPADENTER |
  131.                             TRANSLATE_DIAGONAL );
  132.     /* Initialize the output structure: RGB with square pixels, whatever
  133.      * the input format is, since it's the only format we know */
  134.     p_vout->output.i_chroma = VLC_FOURCC('R','G','B','2');
  135.     p_vout->output.pf_setpalette = SetPalette;
  136.     p_vout->output.i_width = vga_getxdim();
  137.     p_vout->output.i_height = vga_getydim();
  138.     p_vout->output.i_aspect = p_vout->output.i_width
  139.                                * VOUT_ASPECT_FACTOR / p_vout->output.i_height;
  140.     /* Try to initialize 1 direct buffer */
  141.     p_pic = NULL;
  142.     /* Find an empty picture slot */
  143.     for( i_index = 0 ; i_index < VOUT_MAX_PICTURES ; i_index++ )
  144.     {
  145.         if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE )
  146.         {
  147.             p_pic = p_vout->p_picture + i_index;
  148.             break;
  149.         }
  150.     }
  151.     /* Allocate the picture */
  152.     if( p_pic == NULL )
  153.     {
  154.         return VLC_SUCCESS;
  155.     }
  156.     vout_AllocatePicture( p_vout, p_pic, p_vout->output.i_chroma,
  157.                           p_vout->output.i_width, p_vout->output.i_height,
  158.                           p_vout->output.i_aspect );
  159.     if( p_pic->i_planes == 0 )
  160.     {
  161.         return VLC_SUCCESS;
  162.     }
  163.     p_pic->i_status = DESTROYED_PICTURE;
  164.     p_pic->i_type   = DIRECT_PICTURE;
  165.     PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic;
  166.     I_OUTPUTPICTURES++;
  167.     return VLC_SUCCESS;
  168. }
  169. /*****************************************************************************
  170.  * End: terminate video thread
  171.  *****************************************************************************/
  172. static void End( vout_thread_t *p_vout )
  173. {
  174.     keyboard_close();
  175.     vga_clear();
  176.     vga_setmode( TEXT );
  177. }
  178. /*****************************************************************************
  179.  * Destroy: destroy video thread
  180.  *****************************************************************************
  181.  * Terminate an output method created by Create
  182.  *****************************************************************************/
  183. static void Destroy( vlc_object_t *p_this )
  184. {
  185.     vout_thread_t *p_vout = (vout_thread_t *)p_this;
  186.     /* Destroy structure */
  187.     free( p_vout->p_sys );
  188. }
  189. /*****************************************************************************
  190.  * Manage: handle SVGAlib events
  191.  *****************************************************************************
  192.  * This function should be called regularly by video output thread. It manages
  193.  * console events. It returns a non null value on error.
  194.  *****************************************************************************/
  195. static int Manage( vout_thread_t *p_vout )
  196. {
  197.     keyboard_update();
  198.     if( keyboard_keypressed(SCANCODE_ESCAPE)
  199.          || keyboard_keypressed(SCANCODE_Q ) )
  200.     {
  201.         libvlc_Quit( p_vout->p_libvlc );
  202.     }
  203.     return VLC_SUCCESS;
  204. }
  205. /*****************************************************************************
  206.  * Display: displays previously rendered output
  207.  *****************************************************************************
  208.  * This function sends the currently rendered image to the VGA card.
  209.  *****************************************************************************/
  210. static void Display( vout_thread_t *p_vout, picture_t *p_pic )
  211. {
  212.     gl_putbox( 0, 0, p_vout->output.i_width,
  213.                p_vout->output.i_height, p_pic->p->p_pixels );
  214. }
  215. /*****************************************************************************
  216.  * SetPalette: set a 8bpp palette
  217.  *****************************************************************************
  218.  * TODO: support 8 bits clut (for Mach32 cards and others).
  219.  *****************************************************************************/
  220. static void SetPalette( vout_thread_t *p_vout,
  221.                         uint16_t *red, uint16_t *green, uint16_t *blue )
  222. {
  223.     int i = 256;
  224.     while( i-- )
  225.     {
  226.         vga_setpalette( i, red[i]>>10, green[i]>>10, blue[i]>>10 );
  227.     }
  228. }