mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
355 lines
7.3 KiB
C++
355 lines
7.3 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
#include "cellFontFT.h"
|
|
|
|
LOG_CHANNEL(cellFontFT);
|
|
|
|
error_code cellFontInitLibraryFreeTypeWithRevision(u64 revisionFlags, vm::ptr<CellFontLibraryConfigFT> config, vm::pptr<CellFontLibrary> lib)
|
|
{
|
|
cellFontFT.todo("cellFontInitLibraryFreeTypeWithRevision(revisionFlags=0x%llx, config=*0x%x, lib=**0x%x)", revisionFlags, config, lib);
|
|
|
|
if (!lib)
|
|
{
|
|
return CELL_FONT_ERROR_INVALID_PARAMETER;
|
|
}
|
|
|
|
*lib = {};
|
|
|
|
if (!config)
|
|
{
|
|
return CELL_FONT_ERROR_INVALID_PARAMETER;
|
|
}
|
|
|
|
if (false) // TODO
|
|
{
|
|
return CELL_FONT_ERROR_UNINITIALIZED;
|
|
}
|
|
|
|
lib->set(vm::alloc(sizeof(CellFontLibrary), vm::main));
|
|
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code cellFontInitLibraryFreeType(vm::ptr<CellFontLibraryConfigFT> config, vm::pptr<CellFontLibrary> lib)
|
|
{
|
|
cellFontFT.todo("cellFontInitLibraryFreeType(config=*0x%x, lib=**0x%x)", config, lib);
|
|
|
|
uint64_t revisionFlags = 0LL;
|
|
// cellFontFTGetStubRevisionFlags(&revisionFlags);
|
|
return cellFontInitLibraryFreeTypeWithRevision(revisionFlags, config, lib);
|
|
}
|
|
|
|
void cellFontFTGetRevisionFlags(vm::ptr<u64> revisionFlags)
|
|
{
|
|
cellFontFT.notice("cellFontFTGetRevisionFlags(revisionFlags=*0x%x)", revisionFlags);
|
|
|
|
if (revisionFlags)
|
|
{
|
|
*revisionFlags = 0x43;
|
|
}
|
|
}
|
|
|
|
error_code cellFontFTGetInitializedRevisionFlags(vm::ptr<u64> revisionFlags)
|
|
{
|
|
cellFontFT.notice("cellFontFTGetInitializedRevisionFlags(revisionFlags=*0x%x)", revisionFlags);
|
|
|
|
if (!revisionFlags)
|
|
{
|
|
return CELL_FONT_ERROR_INVALID_PARAMETER;
|
|
}
|
|
|
|
if (false) // TODO
|
|
{
|
|
return CELL_FONT_ERROR_UNINITIALIZED;
|
|
}
|
|
|
|
//*revisionFlags = something; // TODO
|
|
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTCacheStream_CacheEnd()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTCacheStream_CacheInit()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTCacheStream_CalcCacheIndexSize()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTCacheStream_End()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTCacheStream_Init()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_Close()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_FontFamilyName()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_FontStyleName()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetAscender()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetBoundingBoxHeight()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetBoundingBoxMaxX()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetBoundingBoxMaxY()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetBoundingBoxMinX()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetBoundingBoxMinY()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetBoundingBoxWidth()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetCompositeCodes()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetGlyphImage()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetGlyphMetrics()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetKerning()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetMaxHorizontalAdvance()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetMaxVerticalAdvance()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetRenderBufferSize()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetRenderEffectSlant()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetRenderEffectWeight()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetRenderScale()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetRenderScalePixel()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_GetRenderScalePoint()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_SetCompositeCodes()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_SetRenderEffectSlant()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_SetRenderEffectWeight()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_SetRenderScalePixel()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTFaceH_SetRenderScalePoint()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTManager_CloseFace()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTManager_Done_FreeType()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTManager_Init_FreeType()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTManager_OpenFileFace()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTManager_OpenMemFace()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTManager_OpenStreamFace()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code FTManager_SetFontOpenMode()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
|
return CELL_OK;
|
|
}
|
|
|
|
DECLARE(ppu_module_manager::cellFontFT)("cellFontFT", []()
|
|
{
|
|
REG_FUNC(cellFontFT, cellFontInitLibraryFreeType);
|
|
REG_FUNC(cellFontFT, cellFontInitLibraryFreeTypeWithRevision);
|
|
REG_FUNC(cellFontFT, cellFontFTGetRevisionFlags);
|
|
REG_FUNC(cellFontFT, cellFontFTGetInitializedRevisionFlags);
|
|
|
|
REG_FUNC(cellFontFT, FTCacheStream_CacheEnd);
|
|
REG_FUNC(cellFontFT, FTCacheStream_CacheInit);
|
|
REG_FUNC(cellFontFT, FTCacheStream_CalcCacheIndexSize);
|
|
REG_FUNC(cellFontFT, FTCacheStream_End);
|
|
REG_FUNC(cellFontFT, FTCacheStream_Init);
|
|
|
|
REG_FUNC(cellFontFT, FTFaceH_Close);
|
|
REG_FUNC(cellFontFT, FTFaceH_FontFamilyName);
|
|
REG_FUNC(cellFontFT, FTFaceH_FontStyleName);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetAscender);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetBoundingBoxHeight);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetBoundingBoxMaxX);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetBoundingBoxMaxY);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetBoundingBoxMinX);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetBoundingBoxMinY);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetBoundingBoxWidth);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetCompositeCodes);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetGlyphImage);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetGlyphMetrics);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetKerning);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetMaxHorizontalAdvance);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetMaxVerticalAdvance);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetRenderBufferSize);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetRenderEffectSlant);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetRenderEffectWeight);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetRenderScale);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetRenderScalePixel);
|
|
REG_FUNC(cellFontFT, FTFaceH_GetRenderScalePoint);
|
|
REG_FUNC(cellFontFT, FTFaceH_SetCompositeCodes);
|
|
REG_FUNC(cellFontFT, FTFaceH_SetRenderEffectSlant);
|
|
REG_FUNC(cellFontFT, FTFaceH_SetRenderEffectWeight);
|
|
REG_FUNC(cellFontFT, FTFaceH_SetRenderScalePixel);
|
|
REG_FUNC(cellFontFT, FTFaceH_SetRenderScalePoint);
|
|
|
|
REG_FUNC(cellFontFT, FTManager_CloseFace);
|
|
REG_FUNC(cellFontFT, FTManager_Done_FreeType);
|
|
REG_FUNC(cellFontFT, FTManager_Init_FreeType);
|
|
REG_FUNC(cellFontFT, FTManager_OpenFileFace);
|
|
REG_FUNC(cellFontFT, FTManager_OpenMemFace);
|
|
REG_FUNC(cellFontFT, FTManager_OpenStreamFace);
|
|
REG_FUNC(cellFontFT, FTManager_SetFontOpenMode);
|
|
});
|