musix 0.3.3

Music player library for esoteric audio formats (music from C64,Amiga etc)
Documentation
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *   Mupen64plus-rsp-hle - plugin.c                                        *
 *   Mupen64Plus homepage: http://code.google.com/p/mupen64plus/           *
 *   Copyright (C) 2014 Bobby Smiles                                       *
 *   Copyright (C) 2009 Richard Goedeken                                   *
 *   Copyright (C) 2002 Hacktarux                                          *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#include <stdarg.h>
#include <string.h>
#include <stdio.h>

#include "usf/usf.h"
#include "usf/usf_internal.h"

#include "r4300/interupt.h"

#include "hle.h"

/* Global functions needed by HLE core */
void HleVerboseMessage(void* user_defined, const char *message, ...)
{
    /* discard verbose message */
}

void HleErrorMessage(void* user_defined, const char *message, ...)
{
    usf_state_t* state;
    va_list ap;
    size_t len;

    state = (usf_state_t*)user_defined;
    len = strlen( state->error_message );

    if ( len )
        state->error_message[ len++ ] = '\n';

    va_start( ap, message );
    vsprintf( state->error_message + len, message, ap );
    va_end( ap );

    state->last_error = state->error_message;
    state->stop = 1;
}

void HleWarnMessage(void* user_defined, const char *message, ...)
{
    usf_state_t* state;
    va_list ap;
    size_t len;
    
    state = (usf_state_t*)user_defined;
    len = strlen( state->error_message );
    
    if ( len )
        state->error_message[ len++ ] = '\n';
    
    va_start( ap, message );
    vsprintf( state->error_message + len, message, ap );
    va_end( ap );
    
    state->last_error = state->error_message;
    state->stop = 1;
}

void HleCheckInterrupts(void* user_defined)
{
    //check_interupt((usf_state_t*)user_defined);
}

void HleProcessDlistList(void* user_defined)
{
    usf_state_t * state = (usf_state_t *) user_defined;
    state->g_r4300.mi.regs[MI_INTR_REG] |= MI_INTR_DP;
}

void HleProcessAlistList(void* user_defined)
{
    /* disabled */
}

void HleProcessRdpList(void* user_defined)
{
    /* disabled */
}

void HleShowCFB(void* user_defined)
{
    /* disabled */
}