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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * intf.c: Generic lua interface functions
  3.  *****************************************************************************
  4.  * Copyright (C) 2007-2008 the VideoLAN team
  5.  * $Id: 05c1aae0cbf9b4fcbc9cb2634e7e11684a1fefe6 $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea at videolan tod 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. #ifndef  _GNU_SOURCE
  27. #   define  _GNU_SOURCE
  28. #endif
  29. #ifdef HAVE_CONFIG_H
  30. # include "config.h"
  31. #endif
  32. #include <vlc_vout.h>
  33. #include <vlc_osd.h>
  34. #include <lua.h>        /* Low level lua C API */
  35. #include <lauxlib.h>    /* Higher level C API */
  36. #include "../vlc.h"
  37. #include "../libs.h"
  38. /*****************************************************************************
  39.  * OSD
  40.  *****************************************************************************/
  41. static int vlc_osd_icon_from_string( const char *psz_name )
  42. {
  43.     static const struct
  44.     {
  45.         int i_icon;
  46.         const char *psz_name;
  47.     } pp_icons[] =
  48.         { { OSD_PAUSE_ICON, "pause" },
  49.           { OSD_PLAY_ICON, "play" },
  50.           { OSD_SPEAKER_ICON, "speaker" },
  51.           { OSD_MUTE_ICON, "mute" },
  52.           { 0, NULL } };
  53.     int i;
  54.     for( i = 0; pp_icons[i].psz_name; i++ )
  55.     {
  56.         if( !strcmp( psz_name, pp_icons[i].psz_name ) )
  57.             return pp_icons[i].i_icon;
  58.     }
  59.     return 0;
  60. }
  61. static int vlclua_osd_icon( lua_State *L )
  62. {
  63.     const char *psz_icon = luaL_checkstring( L, 1 );
  64.     int i_icon = vlc_osd_icon_from_string( psz_icon );
  65.     int i_chan = luaL_optint( L, 2, DEFAULT_CHAN );
  66.     if( !i_icon )
  67.         return luaL_error( L, ""%s" is not a valid osd icon.", psz_icon );
  68.     else
  69.     {
  70.         vlc_object_t *p_this = vlclua_get_this( L );
  71.         vout_OSDIcon( p_this, i_chan, i_icon );
  72.         return 0;
  73.     }
  74. }
  75. static int vlclua_osd_message( lua_State *L )
  76. {
  77.     const char *psz_message = luaL_checkstring( L, 1 );
  78.     int i_chan = luaL_optint( L, 2, DEFAULT_CHAN );
  79.     vlc_object_t *p_this = vlclua_get_this( L );
  80.     vout_OSDMessage( p_this, i_chan, "%s", psz_message );
  81.     return 0;
  82. }
  83. static int vlc_osd_slider_type_from_string( const char *psz_name )
  84. {
  85.     static const struct
  86.     {
  87.         int i_type;
  88.         const char *psz_name;
  89.     } pp_types[] =
  90.         { { OSD_HOR_SLIDER, "horizontal" },
  91.           { OSD_VERT_SLIDER, "vertical" },
  92.           { 0, NULL } };
  93.     int i;
  94.     for( i = 0; pp_types[i].psz_name; i++ )
  95.     {
  96.         if( !strcmp( psz_name, pp_types[i].psz_name ) )
  97.             return pp_types[i].i_type;
  98.     }
  99.     return 0;
  100. }
  101. static int vlclua_osd_slider( lua_State *L )
  102. {
  103.     int i_position = luaL_checkint( L, 1 );
  104.     const char *psz_type = luaL_checkstring( L, 2 );
  105.     int i_type = vlc_osd_slider_type_from_string( psz_type );
  106.     int i_chan = luaL_optint( L, 3, DEFAULT_CHAN );
  107.     if( !i_type )
  108.         return luaL_error( L, ""%s" is not a valid slider type.",
  109.                            psz_type );
  110.     else
  111.     {
  112.         vlc_object_t *p_this = vlclua_get_this( L );
  113.         vout_OSDSlider( p_this, i_chan, i_position, i_type );
  114.         return 0;
  115.     }
  116. }
  117. static int vlclua_spu_channel_register( lua_State *L )
  118. {
  119.     int i_chan;
  120.     vlc_object_t *p_this = vlclua_get_this( L );
  121.     vout_thread_t *p_vout = vlc_object_find( p_this, VLC_OBJECT_VOUT,
  122.                                              FIND_ANYWHERE );
  123.     if( !p_vout )
  124.         return luaL_error( L, "Unable to find vout." );
  125.     spu_Control( p_vout->p_spu, SPU_CHANNEL_REGISTER, &i_chan );
  126.     vlc_object_release( p_vout );
  127.     lua_pushinteger( L, i_chan );
  128.     return 1;
  129. }
  130. static int vlclua_spu_channel_clear( lua_State *L )
  131. {
  132.     int i_chan = luaL_checkint( L, 1 );
  133.     vlc_object_t *p_this = vlclua_get_this( L );
  134.     vout_thread_t *p_vout = vlc_object_find( p_this, VLC_OBJECT_VOUT,
  135.                                              FIND_ANYWHERE );
  136.     if( !p_vout )
  137.         return luaL_error( L, "Unable to find vout." );
  138.     spu_Control( p_vout->p_spu, SPU_CHANNEL_CLEAR, i_chan );
  139.     vlc_object_release( p_vout );
  140.     return 0;
  141. }
  142. /*****************************************************************************
  143.  *
  144.  *****************************************************************************/
  145. static const luaL_Reg vlclua_osd_reg[] = {
  146.     { "icon", vlclua_osd_icon },
  147.     { "message", vlclua_osd_message },
  148.     { "slider", vlclua_osd_slider },
  149.     { "channel_register", vlclua_spu_channel_register },
  150.     { "channel_clear", vlclua_spu_channel_clear },
  151.     { NULL, NULL }
  152. };
  153. void luaopen_osd( lua_State *L )
  154. {
  155.     lua_newtable( L );
  156.     luaL_register( L, NULL, vlclua_osd_reg );
  157.     lua_setfield( L, -2, "osd" );
  158. }