rpcs3/rpcs3/Emu/SysCalls/Modules/cellAvconfExt.cpp
Raul Tambre ff3bfa1ca2 Implement cellVideoOutGetGamma/SetGamma
Also fixed settings window being too small and some minor formatting.
2015-09-07 16:33:25 +03:00

160 lines
3.4 KiB
C++

#include "stdafx.h"
#include "Emu/Memory/Memory.h"
#include "Emu/SysCalls/Modules.h"
#include "Ini.h"
#include "cellAudioIn.h"
#include "cellAudioOut.h"
#include "cellVideoOut.h"
extern Module cellAvconfExt;
f32 g_gamma;
s32 cellAudioOutUnregisterDevice()
{
throw EXCEPTION("");
}
s32 cellAudioOutGetDeviceInfo2()
{
throw EXCEPTION("");
}
s32 cellVideoOutSetXVColor()
{
throw EXCEPTION("");
}
s32 cellVideoOutSetupDisplay()
{
throw EXCEPTION("");
}
s32 cellAudioInGetDeviceInfo()
{
throw EXCEPTION("");
}
s32 cellVideoOutConvertCursorColor()
{
throw EXCEPTION("");
}
s32 cellVideoOutGetGamma(u32 videoOut, vm::ptr<f32> gamma)
{
cellAvconfExt.Warning("cellVideoOutGetGamma(videoOut=%d, gamma=*0x%x)", videoOut, gamma);
if (videoOut != CELL_VIDEO_OUT_PRIMARY)
{
return CELL_VIDEO_OUT_ERROR_UNSUPPORTED_VIDEO_OUT;
}
*gamma = g_gamma;
return CELL_OK;
}
s32 cellAudioInGetAvailableDeviceInfo()
{
throw EXCEPTION("");
}
s32 cellAudioOutGetAvailableDeviceInfo()
{
throw EXCEPTION("");
}
s32 cellVideoOutSetGamma(u32 videoOut, f32 gamma)
{
cellAvconfExt.Warning("cellVideoOutSetGamma(videoOut=%d, gamma=%f)", videoOut, gamma);
if (videoOut != CELL_VIDEO_OUT_PRIMARY)
{
return CELL_VIDEO_OUT_ERROR_UNSUPPORTED_VIDEO_OUT;
}
if (gamma < 0.8f || gamma > 1.2f)
{
return CELL_VIDEO_OUT_ERROR_ILLEGAL_PARAMETER;
}
g_gamma = gamma;
return CELL_OK;
}
s32 cellAudioOutRegisterDevice()
{
throw EXCEPTION("");
}
s32 cellAudioOutSetDeviceMode()
{
throw EXCEPTION("");
}
s32 cellAudioInSetDeviceMode()
{
throw EXCEPTION("");
}
s32 cellAudioInRegisterDevice()
{
throw EXCEPTION("");
}
s32 cellAudioInUnregisterDevice()
{
throw EXCEPTION("");
}
s32 cellVideoOutGetScreenSize(u32 videoOut, vm::ptr<float> screenSize)
{
cellAvconfExt.Warning("cellVideoOutGetScreenSize(videoOut=%d, screenSize=*0x%x)", videoOut, screenSize);
if (videoOut != CELL_VIDEO_OUT_PRIMARY)
{
return CELL_VIDEO_OUT_ERROR_UNSUPPORTED_VIDEO_OUT;
}
//TODO: Use virtual screen size
#ifdef _WIN32
//HDC screen = GetDC(NULL);
//float diagonal = roundf(sqrtf((powf(float(GetDeviceCaps(screen, HORZSIZE)), 2) + powf(float(GetDeviceCaps(screen, VERTSIZE)), 2))) * 0.0393f);
#else
// TODO: Linux implementation, without using wx
// float diagonal = roundf(sqrtf((powf(wxGetDisplaySizeMM().GetWidth(), 2) + powf(wxGetDisplaySizeMM().GetHeight(), 2))) * 0.0393f);
#endif
if (Ini.GS3DTV.GetValue())
{
*screenSize = 24.0f;
return CELL_OK;
}
return CELL_VIDEO_OUT_ERROR_VALUE_IS_NOT_SET;
}
Module cellAvconfExt("cellAvconfExt", []()
{
g_gamma = 1.0f;
REG_FUNC(cellAvconfExt, cellAudioOutUnregisterDevice);
REG_FUNC(cellAvconfExt, cellAudioOutGetDeviceInfo2);
REG_FUNC(cellAvconfExt, cellVideoOutSetXVColor);
REG_FUNC(cellAvconfExt, cellVideoOutSetupDisplay);
REG_FUNC(cellAvconfExt, cellAudioInGetDeviceInfo);
REG_FUNC(cellAvconfExt, cellVideoOutConvertCursorColor);
REG_FUNC(cellAvconfExt, cellVideoOutGetGamma);
REG_FUNC(cellAvconfExt, cellAudioInGetAvailableDeviceInfo);
REG_FUNC(cellAvconfExt, cellAudioOutGetAvailableDeviceInfo);
REG_FUNC(cellAvconfExt, cellVideoOutSetGamma);
REG_FUNC(cellAvconfExt, cellAudioOutRegisterDevice);
REG_FUNC(cellAvconfExt, cellAudioOutSetDeviceMode);
REG_FUNC(cellAvconfExt, cellAudioInSetDeviceMode);
REG_FUNC(cellAvconfExt, cellAudioInRegisterDevice);
REG_FUNC(cellAvconfExt, cellAudioInUnregisterDevice);
REG_FUNC(cellAvconfExt, cellVideoOutGetScreenSize);
});