mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-10 03:46:28 +00:00
Merge pull request #850 from wbrbr/xm_fix
Add rewind for the XM music format
This commit is contained in:
17
src/external/jar_xm.h
vendored
17
src/external/jar_xm.h
vendored
@@ -1925,7 +1925,6 @@ static void jar_xm_handle_note_and_instrument(jar_xm_context_t* ctx, jar_xm_chan
|
|||||||
|
|
||||||
case 33: /* Xxy: Extra stuff */
|
case 33: /* Xxy: Extra stuff */
|
||||||
switch(s->effect_param >> 4) {
|
switch(s->effect_param >> 4) {
|
||||||
|
|
||||||
case 1: /* X1y: Extra fine portamento up */
|
case 1: /* X1y: Extra fine portamento up */
|
||||||
if(s->effect_param & 0x0F) {
|
if(s->effect_param & 0x0F) {
|
||||||
ch->extra_fine_portamento_up_param = s->effect_param & 0x0F;
|
ch->extra_fine_portamento_up_param = s->effect_param & 0x0F;
|
||||||
@@ -2660,6 +2659,22 @@ int jar_xm_create_context_from_file(jar_xm_context_t** ctx, uint32_t rate, const
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// not part of the original library
|
||||||
|
void jar_xm_reset(jar_xm_context_t* ctx)
|
||||||
|
{
|
||||||
|
// I don't know what I am doing
|
||||||
|
// this is probably very broken
|
||||||
|
// but it kinda works
|
||||||
|
for (uint16_t i = 0; i < jar_xm_get_number_of_channels(ctx); i++)
|
||||||
|
{
|
||||||
|
jar_xm_cut_note(&ctx->channels[i]);
|
||||||
|
}
|
||||||
|
ctx->current_row = 0;
|
||||||
|
ctx->current_table_index = 1;
|
||||||
|
ctx->current_tick = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif//end of JAR_XM_IMPLEMENTATION
|
#endif//end of JAR_XM_IMPLEMENTATION
|
||||||
//-------------------------------------------------------------------------------
|
//-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@@ -1335,7 +1335,7 @@ void StopMusicStream(Music music)
|
|||||||
case MUSIC_AUDIO_MP3: drmp3_seek_to_pcm_frame(&music->ctxMp3, 0); break;
|
case MUSIC_AUDIO_MP3: drmp3_seek_to_pcm_frame(&music->ctxMp3, 0); break;
|
||||||
#endif
|
#endif
|
||||||
#if defined(SUPPORT_FILEFORMAT_XM)
|
#if defined(SUPPORT_FILEFORMAT_XM)
|
||||||
case MUSIC_MODULE_XM: /* TODO: Restart XM context */ break;
|
case MUSIC_MODULE_XM: jar_xm_reset(music->ctxXm); break;
|
||||||
#endif
|
#endif
|
||||||
#if defined(SUPPORT_FILEFORMAT_MOD)
|
#if defined(SUPPORT_FILEFORMAT_MOD)
|
||||||
case MUSIC_MODULE_MOD: jar_mod_seek_start(&music->ctxMod); break;
|
case MUSIC_MODULE_MOD: jar_mod_seek_start(&music->ctxMod); break;
|
||||||
|
Reference in New Issue
Block a user