darwin_specific.m
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * darwin_specific.m: Darwin specific features
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2004 VideoLAN
  5.  * $Id: darwin_specific.m 8299 2004-07-27 16:20:32Z hartman $
  6.  *
  7.  * Authors: Sam Hocevar <sam@zoy.org>
  8.  *          Christophe Massiot <massiot@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #include <string.h>                                              /* strdup() */
  25. #include <stdlib.h>                                                /* free() */
  26. #include <vlc/vlc.h>
  27. #include <Cocoa/Cocoa.h>
  28. #ifdef HAVE_LOCALE_H
  29. #   include <locale.h>
  30. #endif
  31. /*****************************************************************************
  32.  * system_Init: fill in program path & retrieve language
  33.  *****************************************************************************/
  34. static int FindLanguage( const char * psz_lang )
  35. {
  36.     const char ** ppsz_parser;
  37.     const char * ppsz_all[] =
  38.     {
  39.         "German", "de",
  40.         "British", "en_GB",
  41.         "English", "en",
  42.         "Spanish", "es",
  43.         "French", "fr",
  44.         "Hungarian", "hu",
  45.         "Italian", "it",
  46.         "Japanese", "ja",
  47.         "Dutch", "nl",
  48.         "Norwegian", "no",
  49.         "Polish", "pl",
  50.         "Brazillian Portuguese", "pt_BR",
  51.         "Russian", "ru",
  52.         "Swedish", "sv",
  53.         NULL
  54.     };
  55.     for( ppsz_parser = ppsz_all ; ppsz_parser[0] ; ppsz_parser += 2 )
  56.     {
  57.         if( !strcmp( psz_lang, ppsz_parser[0] )
  58.              || !strcmp( psz_lang, ppsz_parser[1] ) )
  59.         {
  60.             setenv( "LANG", ppsz_parser[1], 1 );
  61.             return 1;
  62.         }
  63.     }
  64.     return 0;
  65. }
  66. void system_Init( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] )
  67. {
  68.     char i_dummy;
  69.     char *p_char, *p_oldchar = &i_dummy;
  70.     /* Get the full program path and name */
  71.     p_char = p_this->p_libvlc->psz_vlcpath = strdup( ppsz_argv[ 0 ] );
  72.     /* Remove trailing program name */
  73.     for( ; *p_char ; )
  74.     {
  75.         if( *p_char == '/' )
  76.         {
  77.             *p_oldchar = '/';
  78.             *p_char = '';
  79.             p_oldchar = p_char;
  80.         }
  81.         p_char++;
  82.     }
  83.     /* Check if $LANG is set. */
  84.     if ( (p_char = getenv("LANG")) == NULL )
  85.     {
  86.         NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
  87.         /* Retrieve user's preferences. */
  88.         NSUserDefaults * o_defs = [NSUserDefaults standardUserDefaults];
  89.         NSArray * o_languages = [o_defs objectForKey:@"AppleLanguages"];
  90.         NSEnumerator * o_enumerator = [o_languages objectEnumerator];
  91.         NSString * o_lang;
  92.         while ( (o_lang = [o_enumerator nextObject]) )
  93.         {
  94.             const char * psz_string = [o_lang lossyCString];
  95.             if ( FindLanguage( psz_string ) )
  96.             {
  97.                 break;
  98.             }
  99.         }
  100.         [o_pool release];
  101.     }
  102. }
  103. /*****************************************************************************
  104.  * system_Configure: check for system specific configuration options.
  105.  *****************************************************************************/
  106. void system_Configure( vlc_t *p_this, int *pi_argc, char *ppsz_argv[] )
  107. {
  108. }
  109. /*****************************************************************************
  110.  * system_End: free the program path.
  111.  *****************************************************************************/
  112. void system_End( vlc_t *p_this )
  113. {
  114.     free( p_this->p_libvlc->psz_vlcpath );
  115. }