mirror of https://github.com/PCSX2/pcsx2.git
263 lines
10 KiB
C++
263 lines
10 KiB
C++
/* SPU2-X, A plugin for Emulating the Sound Processing Unit of the Playstation 2
|
|
* Developed and maintained by the Pcsx2 Development Team.
|
|
*
|
|
* Original portions from SPU2ghz are (c) 2008 by David Quintana [gigaherz]
|
|
*
|
|
* SPU2-X is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* SPU2-X 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with SPU2-X. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "Global.h"
|
|
|
|
int crazy_debug=0;
|
|
|
|
char s[4096];
|
|
|
|
FILE *spu2Log = NULL;
|
|
|
|
void FileLog(const char *fmt, ...) {
|
|
#ifdef SPU2_LOG
|
|
va_list list;
|
|
|
|
if(!AccessLog()) return;
|
|
if(!spu2Log) return;
|
|
|
|
va_start(list, fmt);
|
|
vsprintf(s,fmt, list);
|
|
va_end(list);
|
|
|
|
fputs(s,spu2Log);
|
|
fflush(spu2Log);
|
|
|
|
#if 0
|
|
if(crazy_debug)
|
|
{
|
|
fputs(s,stderr);
|
|
fflush(stderr);
|
|
}
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
//Note to developer on the usage of ConLog:
|
|
// while ConLog doesn't print anything if messages to console are disabled at the GUI,
|
|
// it's still better to outright not call it on tight loop scenarios, by testing MsgToConsole() (which is inline and very quick).
|
|
// Else, there's some (small) overhead in calling and returning from ConLog.
|
|
void ConLog(const char *fmt, ...) {
|
|
if(!MsgToConsole()) return;
|
|
|
|
va_list list;
|
|
va_start(list, fmt);
|
|
vsprintf(s,fmt, list);
|
|
va_end(list);
|
|
|
|
fputs(s,stderr);
|
|
fflush(stderr);
|
|
|
|
if(spu2Log)
|
|
{
|
|
fputs(s,spu2Log);
|
|
fflush(spu2Log);
|
|
}
|
|
}
|
|
|
|
void V_VolumeSlide::DebugDump( FILE* dump, const char* title, const char* nameLR )
|
|
{
|
|
fprintf( dump, "%s Volume for %s Channel:\t%x\n"
|
|
" - Value: %x\n"
|
|
" - Mode: %x\n"
|
|
" - Increment: %x\n",
|
|
title, nameLR, Reg_VOL, Value, Mode, Increment);
|
|
}
|
|
|
|
void V_VolumeSlideLR::DebugDump( FILE* dump, const char* title )
|
|
{
|
|
Left.DebugDump( dump, title, "Left" );
|
|
Right.DebugDump( dump, title, "Right" );
|
|
}
|
|
|
|
void V_VolumeLR::DebugDump( FILE* dump, const char* title )
|
|
{
|
|
fprintf( dump, "Volume for %s (%s Channel):\t%x\n", title, "Left", Left );
|
|
fprintf( dump, "Volume for %s (%s Channel):\t%x\n", title, "Right", Right );
|
|
}
|
|
|
|
void DoFullDump()
|
|
{
|
|
#ifdef _MSC_VER
|
|
#ifdef SPU2_LOG
|
|
FILE *dump;
|
|
u8 c=0, v=0;
|
|
|
|
if(MemDump())
|
|
{
|
|
dump = fopen( wxString(MemDumpFileName).ToUTF8(), "wb" );
|
|
if (dump)
|
|
{
|
|
fwrite(_spu2mem,0x200000,1,dump);
|
|
fclose(dump);
|
|
}
|
|
}
|
|
if(RegDump())
|
|
{
|
|
dump = fopen( wxString(RegDumpFileName).ToUTF8(), "wb" );
|
|
if (dump)
|
|
{
|
|
fwrite(spu2regs,0x2000,1,dump);
|
|
fclose(dump);
|
|
}
|
|
}
|
|
|
|
if(!CoresDump()) return;
|
|
dump = fopen( wxString(CoresDumpFileName).ToUTF8(), "wt" );
|
|
if (dump)
|
|
{
|
|
for(c=0;c<2;c++)
|
|
{
|
|
fprintf(dump,"#### CORE %d DUMP.\n",c);
|
|
|
|
Cores[c].MasterVol.DebugDump( dump, "Master" );
|
|
|
|
Cores[c].ExtVol.DebugDump( dump, "External Data Input" );
|
|
Cores[c].InpVol.DebugDump( dump, "Voice Data Input [dry]" );
|
|
Cores[c].FxVol.DebugDump( dump, "Effects/Reverb [wet]" );
|
|
|
|
fprintf(dump,"Interrupt Address: %x\n",Cores[c].IRQA);
|
|
fprintf(dump,"DMA Transfer Start Address: %x\n",Cores[c].TSA);
|
|
fprintf(dump,"External Input to Direct Output (Left): %s\n",Cores[c].DryGate.ExtL?"Yes":"No");
|
|
fprintf(dump,"External Input to Direct Output (Right): %s\n",Cores[c].DryGate.ExtR?"Yes":"No");
|
|
fprintf(dump,"External Input to Effects (Left): %s\n",Cores[c].WetGate.ExtL?"Yes":"No");
|
|
fprintf(dump,"External Input to Effects (Right): %s\n",Cores[c].WetGate.ExtR?"Yes":"No");
|
|
fprintf(dump,"Sound Data Input to Direct Output (Left): %s\n",Cores[c].DryGate.SndL?"Yes":"No");
|
|
fprintf(dump,"Sound Data Input to Direct Output (Right): %s\n",Cores[c].DryGate.SndR?"Yes":"No");
|
|
fprintf(dump,"Sound Data Input to Effects (Left): %s\n",Cores[c].WetGate.SndL?"Yes":"No");
|
|
fprintf(dump,"Sound Data Input to Effects (Right): %s\n",Cores[c].WetGate.SndR?"Yes":"No");
|
|
fprintf(dump,"Voice Data Input to Direct Output (Left): %s\n",Cores[c].DryGate.InpL?"Yes":"No");
|
|
fprintf(dump,"Voice Data Input to Direct Output (Right): %s\n",Cores[c].DryGate.InpR?"Yes":"No");
|
|
fprintf(dump,"Voice Data Input to Effects (Left): %s\n",Cores[c].WetGate.InpL?"Yes":"No");
|
|
fprintf(dump,"Voice Data Input to Effects (Right): %s\n",Cores[c].WetGate.InpR?"Yes":"No");
|
|
fprintf(dump,"IRQ Enabled: %s\n",Cores[c].IRQEnable?"Yes":"No");
|
|
fprintf(dump,"Effects Enabled: %s\n",Cores[c].FxEnable?"Yes":"No");
|
|
fprintf(dump,"Mute Enabled: %s\n",Cores[c].Mute?"Yes":"No");
|
|
fprintf(dump,"Noise Clock: %d\n",Cores[c].NoiseClk);
|
|
fprintf(dump,"DMA Bits: %d\n",Cores[c].DMABits);
|
|
fprintf(dump,"Effects Start: %x\n",Cores[c].EffectsStartA);
|
|
fprintf(dump,"Effects End: %x\n",Cores[c].EffectsEndA);
|
|
fprintf(dump,"Registers:\n");
|
|
fprintf(dump," - PMON: %x\n",Cores[c].Regs.PMON);
|
|
fprintf(dump," - NON: %x\n",Cores[c].Regs.NON);
|
|
fprintf(dump," - VMIXL: %x\n",Cores[c].Regs.VMIXL);
|
|
fprintf(dump," - VMIXR: %x\n",Cores[c].Regs.VMIXR);
|
|
fprintf(dump," - VMIXEL: %x\n",Cores[c].Regs.VMIXEL);
|
|
fprintf(dump," - VMIXER: %x\n",Cores[c].Regs.VMIXER);
|
|
fprintf(dump," - MMIX: %x\n",Cores[c].Regs.VMIXEL);
|
|
fprintf(dump," - ENDX: %x\n",Cores[c].Regs.VMIXER);
|
|
fprintf(dump," - STATX: %x\n",Cores[c].Regs.VMIXEL);
|
|
fprintf(dump," - ATTR: %x\n",Cores[c].Regs.VMIXER);
|
|
for(v=0;v<24;v++)
|
|
{
|
|
fprintf(dump,"Voice %d:\n",v);
|
|
Cores[c].Voices[v].Volume.DebugDump( dump, "" );
|
|
|
|
fprintf(dump," - ADSR Envelope: %x & %x\n"
|
|
" - Ar: %x\n"
|
|
" - Am: %x\n"
|
|
" - Dr: %x\n"
|
|
" - Sl: %x\n"
|
|
" - Sr: %x\n"
|
|
" - Sm: %x\n"
|
|
" - Rr: %x\n"
|
|
" - Rm: %x\n"
|
|
" - Phase: %x\n"
|
|
" - Value: %x\n",
|
|
Cores[c].Voices[v].ADSR.regADSR1,
|
|
Cores[c].Voices[v].ADSR.regADSR2,
|
|
Cores[c].Voices[v].ADSR.AttackRate,
|
|
Cores[c].Voices[v].ADSR.AttackMode,
|
|
Cores[c].Voices[v].ADSR.DecayRate,
|
|
Cores[c].Voices[v].ADSR.SustainLevel,
|
|
Cores[c].Voices[v].ADSR.SustainRate,
|
|
Cores[c].Voices[v].ADSR.SustainMode,
|
|
Cores[c].Voices[v].ADSR.ReleaseRate,
|
|
Cores[c].Voices[v].ADSR.ReleaseMode,
|
|
Cores[c].Voices[v].ADSR.Phase,
|
|
Cores[c].Voices[v].ADSR.Value);
|
|
|
|
fprintf(dump," - Pitch: %x\n",Cores[c].Voices[v].Pitch);
|
|
fprintf(dump," - Modulated: %s\n",Cores[c].Voices[v].Modulated?"Yes":"No");
|
|
fprintf(dump," - Source: %s\n",Cores[c].Voices[v].Noise?"Noise":"Wave");
|
|
fprintf(dump," - Direct Output for Left Channel: %s\n",Cores[c].VoiceGates[v].DryL?"Yes":"No");
|
|
fprintf(dump," - Direct Output for Right Channel: %s\n",Cores[c].VoiceGates[v].DryR?"Yes":"No");
|
|
fprintf(dump," - Effects Output for Left Channel: %s\n",Cores[c].VoiceGates[v].WetL?"Yes":"No");
|
|
fprintf(dump," - Effects Output for Right Channel: %s\n",Cores[c].VoiceGates[v].WetR?"Yes":"No");
|
|
fprintf(dump," - Loop Start Address: %x\n",Cores[c].Voices[v].LoopStartA);
|
|
fprintf(dump," - Sound Start Address: %x\n",Cores[c].Voices[v].StartA);
|
|
fprintf(dump," - Next Data Address: %x\n",Cores[c].Voices[v].NextA);
|
|
fprintf(dump," - Play Start Cycle: %d\n",Cores[c].Voices[v].PlayCycle);
|
|
fprintf(dump," - Play Status: %s\n",(Cores[c].Voices[v].ADSR.Phase>0)?"Playing":"Not Playing");
|
|
fprintf(dump," - Block Sample: %d\n",Cores[c].Voices[v].SCurrent);
|
|
}
|
|
fprintf(dump,"#### END OF DUMP.\n\n");
|
|
}
|
|
fclose(dump);
|
|
}
|
|
|
|
dump = fopen( "logs/effects.txt", "wt" );
|
|
if (dump)
|
|
{
|
|
for(c=0;c<2;c++)
|
|
{
|
|
fprintf(dump,"#### CORE %d EFFECTS PROCESSOR DUMP.\n",c);
|
|
|
|
fprintf(dump," - IN_COEF_L: %x\n",Cores[c].Revb.IN_COEF_R);
|
|
fprintf(dump," - IN_COEF_R: %x\n",Cores[c].Revb.IN_COEF_L);
|
|
|
|
fprintf(dump," - FB_ALPHA: %x\n",Cores[c].Revb.FB_ALPHA);
|
|
fprintf(dump," - FB_X: %x\n",Cores[c].Revb.FB_X);
|
|
fprintf(dump," - FB_SRC_A: %x\n",Cores[c].Revb.FB_SRC_A);
|
|
fprintf(dump," - FB_SRC_B: %x\n",Cores[c].Revb.FB_SRC_B);
|
|
|
|
fprintf(dump," - IIR_ALPHA: %x\n",Cores[c].Revb.IIR_ALPHA);
|
|
fprintf(dump," - IIR_COEF: %x\n",Cores[c].Revb.IIR_COEF);
|
|
fprintf(dump," - IIR_SRC_A0: %x\n",Cores[c].Revb.IIR_SRC_A0);
|
|
fprintf(dump," - IIR_SRC_A1: %x\n",Cores[c].Revb.IIR_SRC_A1);
|
|
fprintf(dump," - IIR_SRC_B1: %x\n",Cores[c].Revb.IIR_SRC_B0);
|
|
fprintf(dump," - IIR_SRC_B0: %x\n",Cores[c].Revb.IIR_SRC_B1);
|
|
fprintf(dump," - IIR_DEST_A0: %x\n",Cores[c].Revb.IIR_DEST_A0);
|
|
fprintf(dump," - IIR_DEST_A1: %x\n",Cores[c].Revb.IIR_DEST_A1);
|
|
fprintf(dump," - IIR_DEST_B0: %x\n",Cores[c].Revb.IIR_DEST_B0);
|
|
fprintf(dump," - IIR_DEST_B1: %x\n",Cores[c].Revb.IIR_DEST_B1);
|
|
|
|
fprintf(dump," - ACC_COEF_A: %x\n",Cores[c].Revb.ACC_COEF_A);
|
|
fprintf(dump," - ACC_COEF_B: %x\n",Cores[c].Revb.ACC_COEF_B);
|
|
fprintf(dump," - ACC_COEF_C: %x\n",Cores[c].Revb.ACC_COEF_C);
|
|
fprintf(dump," - ACC_COEF_D: %x\n",Cores[c].Revb.ACC_COEF_D);
|
|
fprintf(dump," - ACC_SRC_A0: %x\n",Cores[c].Revb.ACC_SRC_A0);
|
|
fprintf(dump," - ACC_SRC_A1: %x\n",Cores[c].Revb.ACC_SRC_A1);
|
|
fprintf(dump," - ACC_SRC_B0: %x\n",Cores[c].Revb.ACC_SRC_B0);
|
|
fprintf(dump," - ACC_SRC_B1: %x\n",Cores[c].Revb.ACC_SRC_B1);
|
|
fprintf(dump," - ACC_SRC_C0: %x\n",Cores[c].Revb.ACC_SRC_C0);
|
|
fprintf(dump," - ACC_SRC_C1: %x\n",Cores[c].Revb.ACC_SRC_C1);
|
|
fprintf(dump," - ACC_SRC_D0: %x\n",Cores[c].Revb.ACC_SRC_D0);
|
|
fprintf(dump," - ACC_SRC_D1: %x\n",Cores[c].Revb.ACC_SRC_D1);
|
|
|
|
fprintf(dump," - MIX_DEST_A0: %x\n",Cores[c].Revb.MIX_DEST_A0);
|
|
fprintf(dump," - MIX_DEST_A1: %x\n",Cores[c].Revb.MIX_DEST_A1);
|
|
fprintf(dump," - MIX_DEST_B0: %x\n",Cores[c].Revb.MIX_DEST_B0);
|
|
fprintf(dump," - MIX_DEST_B1: %x\n",Cores[c].Revb.MIX_DEST_B1);
|
|
fprintf(dump,"#### END OF DUMP.\n\n");
|
|
}
|
|
fclose(dump);
|
|
}
|
|
#endif
|
|
#endif
|
|
}
|