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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * gme.cpp: Game Music files demuxer (using Game_Music_Emu)
  3.  *****************************************************************************
  4.  * Copyright (C) 2006 the VideoLAN team
  5.  * $Id: e24f04b9d059b8134d3ffea83ecc0a39f1c08bf1 $
  6.  *
  7.  * Authors: Jean Sreng <fox@videolan.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 "Nsf_Emu.h"
  32. #include "Gbs_Emu.h"
  33. #include "Vgm_Emu.h"
  34. #include "Spc_Emu.h"
  35. #include "Gym_Emu.h"
  36. #ifdef HAVE_ZLIB_H
  37.     #include "zlib.h"
  38. #endif
  39. using namespace std;
  40. /*****************************************************************************
  41.  * Module descriptor
  42.  *****************************************************************************/
  43. static int  Open    ( vlc_object_t * );
  44. static void Close  ( vlc_object_t * );
  45. vlc_module_begin ()
  46.     set_shortname( "GME")
  47.     set_description( N_("GME demuxer (Game_Music_Emu)" ) )
  48.     set_capability( "demux", 10 )
  49.     set_category( CAT_INPUT )
  50.     set_subcategory( SUBCAT_INPUT_DEMUX )
  51.     set_callbacks( Open, Close )
  52.     add_shortcut( "gme" )
  53. vlc_module_end ()
  54. /*****************************************************************************
  55.  * Local prototypes
  56.  *****************************************************************************/
  57. enum EmuType_e
  58. {
  59.     EMU_NSF     = 0,
  60.     EMU_GBS     = 1,
  61.     EMU_VGM     = 2,
  62.     EMU_SPC     = 3,
  63.     EMU_GYM     = 4
  64. };
  65. static const char* type_str[] =
  66. {
  67.     "NSF (Nes)", "GBS (Gameboy)", "VGM (Master System/Game Gear/Genesis)", "SPC (Super Nes)", "GYM (Genesis)"
  68. };
  69. struct demux_sys_t
  70. {
  71.     es_format_t       fmt;
  72.     es_out_id_t      *es;
  73.     int64_t           i_time;
  74.     int64_t           i_length;
  75.     int               i_data;
  76.     uint8_t          *p_data;
  77.     int               i_type;
  78.     int               i_tracks;
  79.     Music_Emu        *p_musicemu;
  80.     Emu_Mem_Reader   *p_reader;
  81.     vlc_meta_t       *p_meta;
  82. };
  83. static int Demux  ( demux_t *p_demux );
  84. static int Control( demux_t *p_demux, int i_query, va_list args );
  85. #ifdef HAVE_ZLIB_H
  86. static void inflate_gzbuf(uint8_t * p_buffer, size_t i_size, uint8_t ** pp_obuffer, size_t * pi_osize);
  87. #endif
  88. static const char* gme_ext[] =
  89. {
  90.     "nsf", "nsfe", "gbs", "vgm", "vgz", "spc", "gym", NULL
  91. };
  92. /*****************************************************************************
  93.  * Open
  94.  *****************************************************************************/
  95. static int Open( vlc_object_t *p_this )
  96. {
  97.     demux_t     *p_demux = (demux_t*)p_this;
  98.     demux_sys_t *p_sys;
  99.     char        *ext;
  100.     int         i;
  101.     vlc_value_t val;
  102.  
  103.     /* We accept file based on extention match */
  104.     if( !p_demux->b_force )
  105.     {
  106.         if( ( ext = strrchr( p_demux->psz_path, '.' ) ) == NULL ||
  107.             stream_Size( p_demux->s ) == 0 ) return VLC_EGENERIC;
  108.         ext++;  /* skip . */
  109.         for( i = 0; gme_ext[i] != NULL; i++ )
  110.         {
  111.             if( !strcasecmp( ext, gme_ext[i] ) )
  112.             {
  113.                 break;
  114.             }
  115.         }
  116.         if( gme_ext[i] == NULL ) return VLC_EGENERIC;
  117.         msg_Dbg( p_demux, "running GME demuxer (ext=%s)", gme_ext[i] );
  118.     }
  119. #ifndef HAVE_ZLIB_H
  120.     if (i == 4) /* gzipped vgm */
  121.     {
  122.         msg_Dbg( p_demux, "zlib unvailable, unable to read gzipped vgz file" );
  123.         return VLC_EGENERIC;
  124.     }
  125. #endif
  126.     /* Fill p_demux field */
  127.     p_demux->pf_demux = Demux;
  128.     p_demux->pf_control = Control;
  129.     p_demux->p_sys = p_sys = (demux_sys_t *)malloc( sizeof( demux_sys_t ) );
  130.     msg_Dbg( p_demux, "loading complete file (could be long)" );
  131.     p_sys->i_data = stream_Size( p_demux->s );
  132.     p_sys->p_data = (uint8_t *)malloc( p_sys->i_data );
  133.     p_sys->i_data = stream_Read( p_demux->s, p_sys->p_data, p_sys->i_data );
  134.     if( p_sys->i_data <= 0 )
  135.     {
  136.         msg_Err( p_demux, "failed to read the complete file" );
  137.         free( p_sys->p_data );
  138.         free( p_sys );
  139.         return VLC_EGENERIC;
  140.     }
  141.     /* Prepare emulator */
  142.  
  143. #ifdef HAVE_ZLIB_H
  144.     if (i == 4) /* gzipped vgm */
  145.     {
  146.         uint8_t * p_outbuffer;
  147.         size_t i_outsize;
  148.         inflate_gzbuf( p_sys->p_data, p_sys->i_data, &p_outbuffer, &i_outsize );
  149.  
  150.         if (p_outbuffer == NULL)
  151.         {
  152.             msg_Err( p_demux, "failed to understand the file : unable to inflate vgz file" );
  153.             /* we try to seek to recover for other plugin */
  154.             stream_Seek( p_demux->s, 0 );
  155.             free( p_sys->p_data );
  156.             free( p_sys );
  157.             return VLC_EGENERIC;
  158.         }
  159.         free(p_sys->p_data);
  160.         p_sys->p_data = p_outbuffer;
  161.         p_sys->i_data = i_outsize;
  162.     }
  163. #endif
  164.     p_sys->p_reader = new Emu_Mem_Reader( p_sys->p_data, p_sys->i_data );
  165.  
  166.     switch(i)
  167.     {
  168.         case 0:
  169.         case 1:
  170.             p_sys->i_type = EMU_NSF;
  171.             break;
  172.         case 2:
  173.             p_sys->i_type = EMU_GBS;
  174.             break;
  175.         case 3:
  176.         case 4:
  177.             p_sys->i_type = EMU_VGM;
  178.             break;
  179.         case 5:
  180.             p_sys->i_type = EMU_SPC;
  181.             break;
  182.         case 6:
  183.             p_sys->i_type = EMU_GYM;
  184.             break;
  185.     }
  186.     /* Emulator specific initialization */
  187. #define INIT_EMU(type) 
  188.         type##_Emu::header_t header; 
  189.         type##_Emu * p_emu = new type##_Emu; 
  190.         p_emu->init( 44100 ); 
  191.         p_sys->p_musicemu = p_emu; 
  192.         p_sys->p_reader->read( &header, sizeof(header) ); 
  193.         p_error = p_emu->load( header, *(p_sys->p_reader) );
  194.     p_sys->p_meta = vlc_meta_New();
  195.     char psz_temp[512];
  196.  
  197.     /// todo Reinstate meta codec name
  198.     //SET_META( VLC_META_CODEC_NAME, type_str[p_sys->i_type])
  199.  
  200.     const char * p_error;
  201.     switch(p_sys->i_type)
  202.     {
  203.         case EMU_NSF:
  204.         {
  205.             INIT_EMU(Nsf)
  206.             if (p_error == NULL)
  207.             {
  208.                 vlc_meta_SetTitle( p_meta, header.game );
  209.                 vlc_meta_SetArtist( p_meta, header.author );
  210.                 vlc_meta_SetCopyright( p_meta, header.copyright );
  211.                 p_sys->i_tracks = p_emu->track_count();
  212.             }
  213.         }
  214.         break;
  215.         case EMU_GBS:
  216.         {
  217.             INIT_EMU(Gbs)
  218.             if (p_error == NULL)
  219.             {
  220.                 vlc_meta_SetTitle( p_meta, header.game );
  221.                 vlc_meta_SetArtist( p_meta, header.author );
  222.                 vlc_meta_SetCopyright( p_meta, header.copyright );
  223.                 p_sys->i_tracks = p_emu->track_count();
  224.             }
  225.         }
  226.         break;
  227.         case EMU_VGM:
  228.         {
  229.             INIT_EMU(Vgm)
  230.             if (p_error == NULL)
  231.             {
  232.                 p_sys->i_tracks = p_emu->track_count();
  233.             }
  234.        }
  235.         break;
  236.         case EMU_SPC:
  237.         {
  238.             INIT_EMU(Spc)
  239.             if (p_error == NULL)
  240.             {
  241.                 snprintf( psz_temp, 511, "%s (%s)", header.song, header.game );
  242.                 vlc_meta_SetTitle( p_meta, psz_temp );
  243.                 vlc_meta_SetArtist( p_meta, header.author );
  244.                 p_sys->i_tracks = p_emu->track_count();
  245.             }
  246.       }
  247.         break;
  248.         case EMU_GYM:
  249.         {
  250.             INIT_EMU(Gym)
  251.             if (p_error == NULL)
  252.             {
  253.                 snprintf( psz_temp, 511, "%s (%s)", header.song, header.game );
  254.                 vlc_meta_SetTitle( p_meta, psz_temp );
  255.                 vlc_meta_SetCopyright( p_meta, header.copyright );
  256.                 p_sys->i_tracks = p_emu->track_count();
  257.             }
  258.      }
  259.         break;
  260.     }
  261.     if( p_error != NULL )
  262.     {
  263.         msg_Err( p_demux, "failed to understand the file : %s", p_error );
  264.         /* we try to seek to recover for other plugin */
  265.         stream_Seek( p_demux->s, 0 );
  266.         free( p_sys->p_data );
  267.         free( p_sys );
  268.         return VLC_EGENERIC;
  269.     }
  270.    /* init time */
  271.     p_sys->i_time  = 1;
  272.     p_sys->i_length = 314 * (int64_t)1000;
  273.     msg_Dbg( p_demux, "GME loaded type=%s title=%s tracks=%i", type_str[p_sys->i_type],
  274.               vlc_meta_GetValue( p_sys->p_meta, VLC_META_TITLE ), p_sys->i_tracks );
  275.     p_sys->p_musicemu->start_track( 0 );
  276. #ifdef WORDS_BIGENDIAN
  277.     es_format_Init( &p_sys->fmt, AUDIO_ES, VLC_FOURCC( 't', 'w', 'o', 's' ) );
  278. #else
  279.     es_format_Init( &p_sys->fmt, AUDIO_ES, VLC_FOURCC( 'a', 'r', 'a', 'w' ) );
  280. #endif
  281.     p_sys->fmt.audio.i_rate = 44100;
  282.     p_sys->fmt.audio.i_channels = 2;
  283.     p_sys->fmt.audio.i_bitspersample = 16;
  284.     p_sys->es = es_out_Add( p_demux->out, &p_sys->fmt );
  285.  
  286.     return VLC_SUCCESS;
  287. }
  288. /*****************************************************************************
  289.  * Close
  290.  *****************************************************************************/
  291. static void Close( vlc_object_t *p_this )
  292. {
  293.     demux_t     *p_demux = (demux_t*)p_this;
  294.     demux_sys_t *p_sys = p_demux->p_sys;
  295.     delete p_sys->p_musicemu;
  296.     delete p_sys->p_reader;
  297.     free( p_sys->p_data );
  298.     free( p_sys );
  299. }
  300. /*****************************************************************************
  301.  * Demux:
  302.  *****************************************************************************/
  303. static int Demux( demux_t *p_demux )
  304. {
  305.     demux_sys_t *p_sys = p_demux->p_sys;
  306.     block_t     *p_frame;
  307.     int         i_bk = ( p_sys->fmt.audio.i_bitspersample / 8 ) *
  308.                        p_sys->fmt.audio.i_channels;
  309.     const unsigned int i_buf = p_sys->fmt.audio.i_rate / 10 * i_bk;
  310.     const unsigned int i_emubuf = i_buf / sizeof(Music_Emu::sample_t);
  311.     const char * p_error;
  312.     Music_Emu::sample_t p_emubuf [i_emubuf];
  313.     p_frame = block_New( p_demux, i_buf );
  314.     p_sys->p_musicemu->play( i_emubuf, p_emubuf );
  315.  
  316.     /*
  317.     if( p_error != NULL )
  318.     {
  319.         msg_Dbg( p_demux, "stop playing : %s", p_error );
  320.         block_Release( p_frame );
  321.         return 0;
  322.     }
  323.     */
  324.     /* Copy emulator output to frame */
  325.     for (int i = 0; i<i_buf; i++) p_frame->p_buffer[i] = ((uint8_t *)p_emubuf)[i];
  326.     /* Set PCR */
  327.     es_out_Control( p_demux->out, ES_OUT_SET_PCR, (int64_t)p_sys->i_time );
  328.     /* We should use p_frame->i_buffer */
  329.     p_sys->i_time += (int64_t)1000000 * p_frame->i_buffer / i_bk / p_sys->fmt.audio.i_rate;
  330.     /* Send data */
  331.     p_frame->i_dts = p_frame->i_pts = p_sys->i_time;
  332.     es_out_Send( p_demux->out, p_sys->es, p_frame );
  333.     return 1;
  334. }
  335. /*****************************************************************************
  336.  * Control:
  337.  *****************************************************************************/
  338. static int Control( demux_t *p_demux, int i_query, va_list args )
  339. {
  340.     demux_sys_t *p_sys = p_demux->p_sys;
  341.     double f, *pf;
  342.     int64_t i64, *pi64;
  343.     int i_idx;
  344.     vlc_meta_t **pp_meta;
  345. switch( i_query )
  346.     {
  347.         case DEMUX_GET_META:
  348.             pp_meta = (vlc_meta_t **)va_arg( args, vlc_meta_t** );
  349.             if( p_sys->p_meta )
  350.                 *pp_meta = vlc_meta_Duplicate( p_sys->p_meta );
  351.             else
  352.                 *pp_meta = NULL;
  353.             return VLC_SUCCESS;
  354.         case DEMUX_GET_POSITION:
  355.             pf = (double*) va_arg( args, double* );
  356.             if( p_sys->i_length > 0 )
  357.             {
  358.                 *pf = (double)p_sys->i_time / (double)p_sys->i_length;
  359.                 return VLC_SUCCESS;
  360.             }
  361.             return VLC_EGENERIC;
  362. /*
  363.         case DEMUX_SET_POSITION:
  364.             f = (double) va_arg( args, double );
  365.             i64 = f * p_sys->i_length;
  366.             if( i64 >= 0 && i64 <= p_sys->i_length )
  367.             {
  368.                 ModPlug_Seek( p_sys->f, i64 / 1000 );
  369.                 p_sys->i_time = i64 + 1;
  370.                 return VLC_SUCCESS;
  371.             }
  372.             return VLC_EGENERIC;
  373. */
  374.         case DEMUX_GET_TIME:
  375.             pi64 = (int64_t*)va_arg( args, int64_t * );
  376.             *pi64 = p_sys->i_time;
  377.             return VLC_SUCCESS;
  378.         case DEMUX_GET_LENGTH:
  379.             pi64 = (int64_t*)va_arg( args, int64_t * );
  380.             *pi64 = p_sys->i_length;
  381.             return VLC_SUCCESS;
  382. /*
  383.         case DEMUX_SET_TIME:
  384.             i64 = (int64_t)va_arg( args, int64_t );
  385.             if( i64 >= 0 && i64 <= p_sys->i_length )
  386.             {
  387.                 ModPlug_Seek( p_sys->f, i64 / 1000 );
  388.                 p_sys->i_time = i64 + 1;
  389.                 return VLC_SUCCESS;
  390.             }
  391.             return VLC_EGENERIC;
  392. */
  393.         case DEMUX_GET_TITLE_INFO:
  394.             if( p_sys->i_tracks > 1 )
  395.             {
  396.                 input_title_t ***ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
  397.                 int *pi_int    = (int*)va_arg( args, int* );
  398.                 *pi_int = p_sys->i_tracks;
  399.                 *ppp_title = (input_title_t**)malloc( sizeof( input_title_t**) * p_sys->i_tracks );
  400.                 for( int i = 0; i < p_sys->i_tracks; i++ )
  401.                 {
  402.                     char psz_temp[16];
  403.                     snprintf(psz_temp, 15, "Track %i", i);
  404.                     (*ppp_title)[i] = vlc_input_title_New();
  405.                     (*ppp_title)[i]->psz_name = strdup(psz_temp);
  406.                 }
  407.                 return VLC_SUCCESS;
  408.             }
  409.             return VLC_EGENERIC;
  410.         case DEMUX_SET_TITLE:
  411.             i_idx = (int)va_arg( args, int );
  412.             p_sys->p_musicemu->start_track( i_idx );
  413.             p_demux->info.i_title = i_idx;
  414.             p_demux->info.i_update = INPUT_UPDATE_TITLE;
  415.             msg_Dbg( p_demux, "set title %i", i_idx);
  416.             return VLC_SUCCESS;
  417.         case DEMUX_GET_FPS: /* meaningless */
  418.         default:
  419.             return VLC_EGENERIC;
  420.     }
  421. }
  422. #ifdef HAVE_ZLIB_H
  423. static void inflate_gzbuf(uint8_t * p_buffer, size_t i_size, uint8_t ** pp_obuffer, size_t * pi_osize)
  424. {
  425.     z_stream z_str;
  426.     int err;
  427.     size_t offset, out_size;
  428.     uint8_t * out_buffer;
  429.     (*pp_obuffer) = NULL;
  430.     (*pi_osize) = 0;
  431.     memset(&z_str, 0, sizeof(z_str));
  432.     out_size = i_size * 2;
  433.     out_buffer = (uint8_t*)malloc(out_size);
  434.     z_str.next_in   = (unsigned char*)p_buffer;
  435.     z_str.avail_in  = i_size;
  436.     z_str.next_out  = out_buffer;
  437.     z_str.avail_out = out_size;
  438.     if ((err = inflateInit2(&z_str, 31)) != Z_OK) /* gzip format */
  439.     {
  440.         free(out_buffer);
  441.         return;
  442.     }
  443.     while ((err = inflate(&z_str, Z_FINISH)) != Z_STREAM_END)
  444.     {
  445.         switch(err)
  446.         {
  447.         case Z_OK:
  448.             break;
  449.         case Z_BUF_ERROR:
  450.             offset = z_str.next_out - out_buffer;
  451.             out_size *= 2;
  452.             out_buffer = (uint8_t *)realloc(out_buffer, out_size);
  453.             z_str.next_out  = out_buffer + offset;
  454.             z_str.avail_out = out_size - offset;
  455.             break;
  456.         default:
  457.             inflateEnd(&z_str);
  458.             free(out_buffer);
  459.             return;
  460.         }
  461.     }
  462.     (*pi_osize) = out_size - z_str.avail_out;
  463.     inflateEnd(&z_str);
  464.  
  465.     out_buffer = (uint8_t *)realloc(out_buffer, *pi_osize);
  466.     (*pp_obuffer) = out_buffer;
  467. }
  468. #endif