Skip to content

Commit

Permalink
client: play mp3 sound under GoldSource too.
Browse files Browse the repository at this point in the history
  • Loading branch information
nekonomicon committed Nov 29, 2023
1 parent 20c3b46 commit 453768c
Showing 1 changed file with 32 additions and 3 deletions.
35 changes: 32 additions & 3 deletions cl_dll/hud_msg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,28 +129,57 @@ int CHud::MsgFunc_Concuss( const char *pszName, int iSize, void *pbuf )

int CHud::MsgFunc_PlayMP3( const char *pszName, int iSize, void *pbuf ) //AJH -Killar MP3
{
const char *pszSound;
char cmd[64];

BEGIN_READ( pbuf, iSize );

//gMP3.PlayMP3( READ_STRING() );
gEngfuncs.pfnPrimeMusicStream( READ_STRING(), 1 );
pszSound = READ_STRING();

if( !IsXashFWGS( ))
{
sprintf( cmd, "mp3 loop %s\n", pszSound );
gEngfuncs.pfnClientCmd( cmd );
}
else
gEngfuncs.pfnPrimeMusicStream( pszSound, 1 );

return 1;
}

int CHud::MsgFunc_PlayBGM( const char *pszName, int iSize, void *pbuf ) //AJH -Killar MP3
{
const char *pszSound;
char cmd[64];

BEGIN_READ( pbuf, iSize );

if( CVAR_GET_FLOAT( "hud_bgm" ) > 0 )
{
//gMP3.PlayMP3( READ_STRING() );
gEngfuncs.pfnPrimeMusicStream( READ_STRING(), 1 );
pszSound = READ_STRING();

if( !IsXashFWGS( ))
{
sprintf( cmd, "mp3 loop %s\n", pszSound );
gEngfuncs.pfnClientCmd( cmd );
}
else
gEngfuncs.pfnPrimeMusicStream( READ_STRING(), 1 );
}

return 1;
}

int CHud::MsgFunc_StopMP3( const char *pszName, int iSize, void *pbuf ) //AJH -Killar MP3
{
//gMP3.StopMP3();
gEngfuncs.pfnPrimeMusicStream( 0, 0 );
if( !IsXashFWGS( ))
gEngfuncs.pfnClientCmd( "mp3 stop\n" );
else
gEngfuncs.pfnPrimeMusicStream( 0, 0 );

return 1;
}

Expand Down

0 comments on commit 453768c

Please sign in to comment.