Small changes

This commit is contained in:
Nekotekina 2014-02-18 22:45:51 +04:00
parent 931929a82c
commit d849e083b6
5 changed files with 66 additions and 11 deletions

View file

@ -136,6 +136,7 @@ struct CellAudioPortConfig
struct AudioPortConfig struct AudioPortConfig
{ {
bool m_is_audio_port_started; bool m_is_audio_port_started;
bool m_is_audio_port_stopped;
CellAudioPortParam m_param; CellAudioPortParam m_param;
const u32 m_buffer; // 64 KB or 128 KB with 8x16 config const u32 m_buffer; // 64 KB or 128 KB with 8x16 config
@ -414,6 +415,7 @@ int cellAudioPortStart(u32 portNum)
} }
m_config.m_ports[portNum]->m_is_audio_port_started = true; m_config.m_ports[portNum]->m_is_audio_port_started = true;
m_config.m_ports[portNum]->m_is_audio_port_stopped = false;
std::string t_name = "AudioPort0"; std::string t_name = "AudioPort0";
t_name[9] += portNum; t_name[9] += portNum;
@ -426,6 +428,7 @@ int cellAudioPortStart(u32 portNum)
if (port.m_param.nChannel > 8) if (port.m_param.nChannel > 8)
{ {
ConLog.Error("Port aborted: invalid channel count (%d)", port.m_param.nChannel); ConLog.Error("Port aborted: invalid channel count (%d)", port.m_param.nChannel);
port.m_is_audio_port_stopped = true;
return; return;
} }
@ -437,14 +440,15 @@ int cellAudioPortStart(u32 portNum)
wxFile output(output_name, wxFile::write); // create output file wxFile output(output_name, wxFile::write); // create output file
if (!output.IsOpened()) if (!output.IsOpened())
{ {
ConLog.Error("Port aborted: cannot write %s", output_name.wx_str()); ConLog.Error("Port aborted: cannot create %s", output_name.wx_str());
port.m_is_audio_port_stopped = true;
return; return;
} }
ConLog.Write("Port started"); ConLog.Write("Port started");
u64 start_time = get_system_time(); u64 start_time = get_system_time();
u32 counter = 0; u64 counter = 0;
output.Write(&header, sizeof(header)); // write file header output.Write(&header, sizeof(header)); // write file header
@ -454,8 +458,16 @@ int cellAudioPortStart(u32 portNum)
while (port.m_is_audio_port_started) while (port.m_is_audio_port_started)
{ {
if (Emu.IsStopped())
{
ConLog.Warning("Port aborted");
goto abort;
}
// TODO: send beforemix event (in ~2,6 ms before mixing)
// Sleep(5); // precise time of sleeping: 5,(3) ms (or 256/48000 sec) // Sleep(5); // precise time of sleeping: 5,(3) ms (or 256/48000 sec)
if ((u64)counter * 256000000 / 48000 >= get_system_time() - start_time) if (counter * 256000000 / 48000 >= get_system_time() - start_time)
{ {
Sleep(1); Sleep(1);
continue; continue;
@ -463,27 +475,34 @@ int cellAudioPortStart(u32 portNum)
counter++; counter++;
if (Emu.IsPaused())
{
continue;
}
u32 position = index.GetValue(); // get old value u32 position = index.GetValue(); // get old value
memcpy(buffer, Memory + port.m_buffer + position * block_size, block_size); memcpy(buffer, Memory + port.m_buffer + position * block_size, block_size);
memset(Memory + port.m_buffer + position * block_size, 0, block_size);
index = (position + 1) % port.m_param.nBlock; // write new value index = (position + 1) % port.m_param.nBlock; // write new value
// TODO: send aftermix event (normal audio event)
for (u32 i = 0; i < block_size; i++) for (u32 i = 0; i < block_size; i++)
{ {
// reverse byte order (TODO: use port.m_param.level) // reverse byte order (TODO: use port.m_param.level)
buffer[i] = re(buffer[i]); buffer[i] = re(buffer[i]);
} }
output.Write(&buffer, block_size); // write file data if (output.Write(&buffer, block_size) != (size_t)block_size) // write file data
header.Size += block_size; // update file header
header.RIFF.Size += block_size;
if (Emu.IsStopped())
{ {
ConLog.Write("Port aborted"); ConLog.Error("Port aborted: cannot write %s", output_name.wx_str());
goto abort; goto abort;
} }
header.Size += block_size; // update file header
header.RIFF.Size += block_size;
} }
ConLog.Write("Port finished"); ConLog.Write("Port finished");
abort: abort:
@ -491,6 +510,7 @@ int cellAudioPortStart(u32 portNum)
output.Write(&header, sizeof(header)); // write fixed file header output.Write(&header, sizeof(header)); // write fixed file header
output.Close(); output.Close();
port.m_is_audio_port_stopped = true;
}); });
t.detach(); t.detach();
@ -536,6 +556,15 @@ int cellAudioPortStop(u32 portNum)
} }
m_config.m_ports[portNum]->m_is_audio_port_started = false; m_config.m_ports[portNum]->m_is_audio_port_started = false;
while (!m_config.m_ports[portNum]->m_is_audio_port_stopped)
{
Sleep(1);
if (Emu.IsStopped())
{
ConLog.Warning("cellAudioPortStop(%d) aborted", portNum);
break;
}
}
return CELL_OK; return CELL_OK;
} }

View file

@ -26,6 +26,11 @@ int sys_cond_create(mem32_t cond_id, u32 mutex_id, mem_ptr_t<sys_cond_attribute>
return CELL_ESRCH; return CELL_ESRCH;
} }
if (mutex->is_recursive)
{
sys_cond.Warning("Recursive mutex(%d)", mutex_id);
}
Cond* cond = new Cond(mutex, attr->name_u64); Cond* cond = new Cond(mutex, attr->name_u64);
u32 id = sys_cond.GetNewId(cond); u32 id = sys_cond.GetNewId(cond);
cond_id = id; cond_id = id;

View file

@ -216,6 +216,13 @@ int cellFsStat(const u32 path_addr, mem_ptr_t<CellFsStat> sb)
} }
} }
if (path == "/dev_bdvd/PS3_GAME/USRDIR")
{
sys_fs.Warning("cellFsStat: /dev_bdvd/PS3_GAME/USRDIR mount point hack");
sb->st_mode |= CELL_FS_S_IFDIR;
return CELL_OK;
}
// TODO: Temporary solution until vfsDir is implemented // TODO: Temporary solution until vfsDir is implemented
wxString real_path; wxString real_path;
Emu.GetVFS().GetDevice(path, real_path); Emu.GetVFS().GetDevice(path, real_path);

View file

@ -20,10 +20,18 @@ int sys_lwcond_create(mem_ptr_t<sys_lwcond_t> lwcond, mem_ptr_t<sys_lwmutex_t> l
if (lwmutex.IsGood()) if (lwmutex.IsGood())
{ {
if (lwmutex->attribute.ToBE() == se32(SYS_SYNC_RETRY)) if (lwmutex->attribute.ToBE() & se32(SYS_SYNC_RETRY))
{ {
sys_lwcond.Warning("Unsupported SYS_SYNC_RETRY lwmutex protocol"); sys_lwcond.Warning("Unsupported SYS_SYNC_RETRY lwmutex protocol");
} }
if (lwmutex->attribute.ToBE() & se32(SYS_SYNC_RECURSIVE))
{
sys_lwcond.Warning("Recursive lwmutex(sq=%d)", (u32)lwmutex->sleep_queue);
}
}
else
{
sys_lwcond.Warning("Invalid lwmutex address(0x%x)", lwmutex.GetAddr());
} }
sys_lwcond.Warning("*** lwcond created [%s] (lwmutex_addr=0x%x): id = %d", sys_lwcond.Warning("*** lwcond created [%s] (lwmutex_addr=0x%x): id = %d",

View file

@ -67,6 +67,9 @@ int sys_lwmutex_lock(mem_ptr_t<sys_lwmutex_t> lwmutex, u64 timeout)
if (!lwmutex.IsGood()) return CELL_EFAULT; if (!lwmutex.IsGood()) return CELL_EFAULT;
//ConLog.Write("*** lock mutex (addr=0x%x, attr=0x%x, Nrec=%d, owner=%d, waiter=%d)",
//lwmutex.GetAddr(), (u32)lwmutex->attribute, (u32)lwmutex->recursive_count, lwmutex->owner.GetOwner(), (u32)lwmutex->waiter);
return lwmutex->lock(GetCurrentPPUThread().GetId(), timeout ? ((timeout < 1000) ? 1 : (timeout / 1000)) : 0); return lwmutex->lock(GetCurrentPPUThread().GetId(), timeout ? ((timeout < 1000) ? 1 : (timeout / 1000)) : 0);
} }
@ -85,6 +88,9 @@ int sys_lwmutex_unlock(mem_ptr_t<sys_lwmutex_t> lwmutex)
if (!lwmutex.IsGood()) return CELL_EFAULT; if (!lwmutex.IsGood()) return CELL_EFAULT;
//ConLog.Write("*** unlocking mutex (addr=0x%x, attr=0x%x, Nrec=%d, owner=%d, waiter=%d)",
//lwmutex.GetAddr(), (u32)lwmutex->attribute, (u32)lwmutex->recursive_count, (u32)lwmutex->owner.GetOwner(), (u32)lwmutex->waiter);
return lwmutex->unlock(GetCurrentPPUThread().GetId()); return lwmutex->unlock(GetCurrentPPUThread().GetId());
} }