Tons more Microphone work, due to me sucking, it doesn't work yet though.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1066 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Sonicadvance1 2008-11-04 09:05:10 +00:00
parent ac3c29108c
commit 1473512180
2 changed files with 98 additions and 25 deletions

View File

@ -24,16 +24,74 @@
#include "EXI_Device.h" #include "EXI_Device.h"
#include "EXI_DeviceMic.h" #include "EXI_DeviceMic.h"
bool MicButton = false; bool MicButton;
bool IsOpen;
// Doing it this way since it's Linux only atm due to portaudio, even though the lib is crossplatform
// I had to include libs in the DolphinWX Sconscript file which I thought was BS.
// So I'm committing with all the code ifdeff'ed out
#if 1
void SetMic(bool Value)
{}
bool GetMic()
{return false;}
CEXIMic::CEXIMic(int _Index){}
CEXIMic::~CEXIMic(){}
bool CEXIMic::IsPresent() {return false;}
void CEXIMic::SetCS(int cs){}
void CEXIMic::Update(){}
void CEXIMic::TransferByte(u8 &byte){}
bool CEXIMic::IsInterruptSet(){return false;}
#else
#include <portaudio.h>
#include <stdio.h>
unsigned char InputData[128*44100]; // Max Data is 128 samples at 44100
PaStream *stream;
PaError err;
unsigned short SFreq;
unsigned short SNum;
unsigned int Sample;
bool m_bInterruptSet;
bool Sampling;
void SetMic(bool Value) void SetMic(bool Value)
{ {
MicButton = Value; if(Value != MicButton)
{
MicButton = Value;
printf("Mic is set to %s\n", MicButton ? "true" : "false");
if(Sampling)
{
if(MicButton)
Pa_StartStream( stream );
else
Pa_StopStream( stream );
}
}
} }
bool GetMic() bool GetMic()
{ {
return MicButton; return MicButton;
} }
static unsigned int k = 0;
int patestCallback( const void *inputBuffer, void *outputBuffer,
unsigned long framesPerBuffer,
const PaStreamCallbackTimeInfo* timeInfo,
PaStreamCallbackFlags statusFlags,
void *userData )
{
unsigned char *data = (unsigned char*)inputBuffer;
unsigned int i;
for( i=0; i<framesPerBuffer && k < (SFreq*SNum); i++, k++ )
{
InputData[k] = data[i];
}
m_bInterruptSet = true;
return 0;
}
CEXIMic::CEXIMic(int _Index) CEXIMic::CEXIMic(int _Index)
{ {
@ -45,12 +103,17 @@ CEXIMic::CEXIMic(int _Index)
formatDelay = 0; formatDelay = 0;
ID = 0x0a000000; ID = 0x0a000000;
m_bInterruptSet = false; m_bInterruptSet = false;
MicButton = false;
IsOpen = false;
Pa_Initialize();
} }
CEXIMic::~CEXIMic() CEXIMic::~CEXIMic()
{ {
Pa_CloseStream( stream );
Pa_Terminate();
} }
bool CEXIMic::IsPresent() bool CEXIMic::IsPresent()
@ -61,7 +124,10 @@ bool CEXIMic::IsPresent()
void CEXIMic::SetCS(int cs) void CEXIMic::SetCS(int cs)
{ {
if (cs) // not-selected to selected if (cs) // not-selected to selected
{
m_uPosition = 0; m_uPosition = 0;
m_bInterruptSet = false;
}
else else
{ {
switch (command) switch (command)
@ -101,6 +167,7 @@ void CEXIMic::TransferByte(u8 &byte)
{ {
byte = 0xFF; byte = 0xFF;
m_uPosition = 0; m_uPosition = 0;
m_bInterruptSet = false;
} }
} }
else else
@ -120,22 +187,11 @@ void CEXIMic::TransferByte(u8 &byte)
{ {
if(GetMic()) if(GetMic())
{ {
Status.U16 |= (1 << 8); Status.U16 |= (1 << 7);
} }
else else
{ {
Status.U16 &= ~(1 << 8); Status.U16 &= ~(1 << 7);
}
if(Sampling)
{
//printf("Sample %d\n",Sample);
if(Sample >= SNum)
{
Sample = 0;
m_bInterruptSet = true;
}
else
Sample++;
} }
byte = (u8)(Status.U16 >> (24-(((m_uPosition-2) & 3) * 8))); byte = (u8)(Status.U16 >> (24-(((m_uPosition-2) & 3) * 8)));
@ -165,7 +221,8 @@ void CEXIMic::TransferByte(u8 &byte)
else else
{ {
Sampling = false; Sampling = false;
m_bInterruptSet = false; // Only set to false once we have run out of Data?
//m_bInterruptSet = false;
} }
if(!(Status.U16 >> 11) & 1) if(!(Status.U16 >> 11) & 1)
if((Status.U16 >> 12) & 1 ) if((Status.U16 >> 12) & 1 )
@ -186,17 +243,38 @@ void CEXIMic::TransferByte(u8 &byte)
for(int a = 0;a < 16;a++) for(int a = 0;a < 16;a++)
printf("%d ", (Status.U16 >> a) & 1); printf("%d ", (Status.U16 >> a) & 1);
printf("\n"); printf("\n");
if(!IsOpen)
{
// Open Our PortAudio Stream
err = Pa_OpenDefaultStream( &stream,
1,
0,
paUInt8 ,
SFreq,
SNum,
patestCallback,
NULL);
if( err != paNoError )
printf("error %s\n", Pa_GetErrorText (err));
IsOpen = true;
}
} }
} }
break; break;
case cmdGetBuffer: case cmdGetBuffer:
static unsigned long At = 0;
printf("POS %d\n", m_uPosition); printf("POS %d\n", m_uPosition);
// Are we not able to return all the data then? // Are we not able to return all the data then?
// I think if we set the Interrupt to false, it reads another 64 // I think if we set the Interrupt to false, it reads another 64
// Will Look in to it. // Will Look in to it.
if(m_uPosition == SNum / 2) // It's 16bit Audio, so we divide by two // Set to False here? Prevents lock ups maybe?
;//m_bInterruptSet = false; if(At >= SNum){
byte = rand() % 0xFF; At = 0;
k = 0;
m_bInterruptSet = false;
}
byte = InputData[At];
At++;
break; break;
default: default:
printf("Don't know command %x in Byte transfer\n", command); printf("Don't know command %x in Byte transfer\n", command);
@ -205,3 +283,4 @@ void CEXIMic::TransferByte(u8 &byte)
} }
m_uPosition++; m_uPosition++;
} }
#endif

View File

@ -18,7 +18,6 @@
#ifndef _EXI_DEVICEMIC_H #ifndef _EXI_DEVICEMIC_H
#define _EXI_DEVICEMIC_H #define _EXI_DEVICEMIC_H
class CEXIMic : public IEXIDevice class CEXIMic : public IEXIDevice
{ {
public: public:
@ -52,7 +51,6 @@ private:
// STATE_TO_SAVE // STATE_TO_SAVE
int interruptSwitch; int interruptSwitch;
bool m_bInterruptSet;
int command; int command;
union uStatus union uStatus
{ {
@ -63,10 +61,6 @@ private:
u32 m_uPosition; u32 m_uPosition;
u32 formatDelay; u32 formatDelay;
uStatus Status; uStatus Status;
bool Sampling;
short SFreq;
short SNum;
int Sample;
//! memory card parameters //! memory card parameters
unsigned int ID; unsigned int ID;