mactype/settings.cpp

1709 lines
52 KiB
C++
Raw Normal View History

#include "settings.h"
#include "strtoken.h"
#include <math.h> //pow
#include "supinfo.h"
#include "fteng.h"
#include <stdlib.h>
#ifdef INFINALITY
#include <freetype/ftenv.h>
#endif
inline BOOL IsFolder(LPCTSTR pszPath) {
return pszPath && *pszPath && *(pszPath + wcslen(pszPath) - 1) == '\\';
}
wstring LowerCase(wstring str) {
transform(str.begin(), str.end(), str.begin(), ::tolower);
return str;
}
const wstring GetAppDir() {
static wstring AppDir;
if (AppDir.length()) {
return AppDir;
}
WCHAR name[MAX_PATH] = { 0 };
int nSize = GetModuleFileName(NULL, name, MAX_PATH + 1);
PathRemoveFileSpec(name);
AppDir = wstring(name) + L"\\"; // path should always end with a "\"
AppDir = LowerCase(AppDir);
return AppDir;
}
CGdippSettings* CGdippSettings::s_pInstance;
CParseIni CGdippSettings::m_Config;
CHashedStringList FontNameCache;
static const TCHAR c_szGeneral[] = _T("General");
static const TCHAR c_szFreeType[] = _T("FreeType");
static const TCHAR c_szDirectWrite[] = _T("DirectWrite");
#define HINTING_MIN 0
#define HINTING_MAX 2
#define AAMODE_MIN -1
#define AAMODE_MAX 5
#define GAMMAVALUE_MIN 0.0625f
#define GAMMAVALUE_MAX 20.0f
#define CONTRAST_MIN 0.0625f
#define CONTRAST_MAX 10.0f
#define RENDERWEIGHT_MIN 0.0625f
#define RENDERWEIGHT_MAX 10.0f
#define NWEIGHT_MIN -64
#define NWEIGHT_MAX +64
#define BWEIGHT_MIN -32
#define BWEIGHT_MAX +32
#define SLANT_MIN -32
#define SLANT_MAX +32
CGdippSettings* CGdippSettings::CreateInstance()
{
CCriticalSectionLock __lock(CCriticalSectionLock::CS_SETTING);
CGdippSettings* pSettings = new CGdippSettings;
CGdippSettings* pOldSettings = reinterpret_cast<CGdippSettings*>(InterlockedExchangePointer(reinterpret_cast<void**>(&s_pInstance), pSettings));
_ASSERTE(pOldSettings == NULL);
int nSize = GetModuleFileName(NULL, pSettings->m_szexeName, MAX_PATH);
for (int i = nSize; i > 0; --i) {
if (pSettings->m_szexeName[i] == _T('\\')) {
StringCchCopy(pSettings->m_szexeName, nSize - i, pSettings->m_szexeName + i + 1);
break;
}
}
return pSettings;
}
void CGdippSettings::DestroyInstance()
{
CCriticalSectionLock __lock(CCriticalSectionLock::CS_SETTING);
CGdippSettings* pSettings = reinterpret_cast<CGdippSettings*>(InterlockedExchangePointer(reinterpret_cast<void**>(&s_pInstance), NULL));
if (pSettings) {
delete pSettings;
}
}
CGdippSettings* CGdippSettings::GetInstance()
{
CCriticalSectionLock __lock(CCriticalSectionLock::CS_SETTING);
CGdippSettings* pSettings = s_pInstance;
_ASSERTE(pSettings != NULL);
if (!pSettings->m_bDelayedInit) {
pSettings->DelayedInit();
}
return pSettings;
}
const CGdippSettings* CGdippSettings::GetInstanceNoInit()
{
CCriticalSectionLock __lock(CCriticalSectionLock::CS_SETTING);
CGdippSettings* pSettings = s_pInstance;
_ASSERTE(pSettings != NULL);
return pSettings;
}
void CGdippSettings::DelayedInit()
{
if (!g_pFTEngine) {
return;
}
if (IsBadCodePtr((FARPROC)RegOpenKeyExW) || *(DWORD_PTR*)RegOpenKeyExW==0)
return;
/*
In Windows 8, this call will fail in restricted environment
if GetDC failed, we are in a restricted environment where features like font subsitutations doesn't work properly.
Because these features requires DC to get the real font name and we don't have access to any DC, even CreateCompatibleDC(null) fails (it will succeed, but DeleteDC will fail)
So it is better exit than doing initialization.
*/
m_bDelayedInit = true;
HDC hdcScreen = GetDC(NULL);
if (!hdcScreen) {
return;
}
//ForceChangeFont
if (m_szForceChangeFont[0]) {
EnumFontFamilies(hdcScreen, m_szForceChangeFont, EnumFontFamProc, reinterpret_cast<LPARAM>(this));
}
//fetch screen dpi
m_nScreenDpi = GetDeviceCaps(hdcScreen, LOGPIXELSX);
ReleaseDC(NULL, hdcScreen);
// //FontLink
// if (FontLink()) {
// m_fontlinkinfo.init();
// }
const int nTextTuning = _GetFreeTypeProfileInt(_T("TextTuning"), 0, NULL),
nTextTuningR = _GetFreeTypeProfileInt(_T("TextTuningR"), 0, NULL),
nTextTuningG = _GetFreeTypeProfileInt(_T("TextTuningG"), 0, NULL),
nTextTuningB = _GetFreeTypeProfileInt(_T("TextTuningB"), 0, NULL);
InitInitTuneTable();
InitTuneTable(nTextTuning, m_nTuneTable);
InitTuneTable(nTextTuningR, m_nTuneTableR);
InitTuneTable(nTextTuningG, m_nTuneTableG);
InitTuneTable(nTextTuningB, m_nTuneTableB);
RefreshAlphaTable();
//FontSubstitutes
CFontSubstitutesIniArray arrFontSubstitutes;
wstring names = _T("FontSubstitutes@") + wstring(m_szexeName);
if (_IsFreeTypeProfileSectionExists(names.c_str(), m_szFileName))
AddListFromSection(names.c_str(), m_szFileName, arrFontSubstitutes);
else
AddListFromSection(_T("FontSubstitutes"), m_szFileName, arrFontSubstitutes);
m_FontSubstitutesInfo.init(m_nFontSubstitutes, arrFontSubstitutes);
names = _T("Individual@") + wstring(m_szexeName);
if (_IsFreeTypeProfileSectionExists(names.c_str(), NULL))
AddIndividualFromSection(names.c_str(), NULL, m_arrIndividual);
else
AddIndividualFromSection(_T("Individual"), NULL, m_arrIndividual);
AddExcludeListFromSection(_T("Exclude"), NULL, m_arrExcludeFont);
AddExcludeListFromSection(_T("Include"), NULL, m_arrIncludeFont); //I know it's include not exclude, but they share the same logic.
//WritePrivateProfileString(NULL, NULL, NULL, m_szFileName);
//m_bDelayedInit = true;
//FontLink
if (FontLink()) {
m_fontlinkinfo.init();
}
//<2F><><EFBFBD><EFBFBD><EFBFBD>t<EFBFBD>H<EFBFBD><48><EFBFBD>g
/*
LPCTSTR lpszFace = GetForceFontName();
if (lpszFace)
g_pFTEngine->AddFont(lpszFace, FW_NORMAL, false);*/
/* DWORD dwVersion = GetVersion();
if (m_bDirectWrite && (DWORD)(LOBYTE(LOWORD(dwVersion)))>5) //vista or later
{
if (GetModuleHandle(_T("d2d1.dll"))) //directwrite support
HookD2D1();
}*/
}
bool CGdippSettings::LoadSettings(HINSTANCE hModule)
{
CCriticalSectionLock __lock(CCriticalSectionLock::CS_SETTING);
int nSize = ::GetModuleFileName(hModule, m_szFileName, MAX_PATH - sizeof(".ini") + 1);
if (!nSize) {
return false;
}
ChangeFileName(m_szFileName, nSize, L"MacType.ini");
return LoadAppSettings(m_szFileName);
}
int CGdippSettings::_GetFreeTypeProfileIntFromSection(LPCTSTR lpszSection, LPCTSTR lpszKey, int nDefault, LPCTSTR lpszFile)
{
wstring names = wstring((LPTSTR)lpszSection) + _T("@") + wstring((LPTSTR)m_szexeName);
if (m_Config.IsPartExists(names.c_str()) && m_Config[names.c_str()].IsValueExists(lpszKey))
return m_Config[names.c_str()][lpszKey].ToInt();
else
if (m_Config[lpszSection].IsValueExists(lpszKey))
return m_Config[lpszSection][lpszKey].ToInt();
else
return nDefault;
}
bool CGdippSettings::_GetFreeTypeProfileBoolFromSection(LPCTSTR lpszSection, LPCTSTR lpszKey, bool nDefault, LPCTSTR lpszFile)
{
wstring names = wstring((LPTSTR)lpszSection) + _T("@") + wstring((LPTSTR)m_szexeName);
if (m_Config.IsPartExists(names.c_str()) && m_Config[names.c_str()].IsValueExists(lpszKey))
return m_Config[names.c_str()][lpszKey].ToBool();
else
if (m_Config[lpszSection].IsValueExists(lpszKey))
return m_Config[lpszSection][lpszKey].ToBool();
else
return nDefault;
}
wstring CGdippSettings::_GetFreeTypeProfileStrFromSection(LPCTSTR lpszSection, LPCTSTR lpszKey, const TCHAR* nDefault, LPCTSTR lpszFile)
{
wstring names = wstring((LPTSTR)lpszSection) + _T("@") + wstring((LPTSTR)m_szexeName);
if (m_Config.IsPartExists(names.c_str()) && m_Config[names.c_str()].IsValueExists(lpszKey))
return m_Config[names.c_str()][lpszKey].ToString();
else
if (m_Config[lpszSection].IsValueExists(lpszKey))
return m_Config[lpszSection][lpszKey].ToString();
else
return nDefault;
}
int CGdippSettings::_GetFreeTypeProfileInt(LPCTSTR lpszKey, int nDefault, LPCTSTR lpszFile)
{
int ret = _GetFreeTypeProfileIntFromSection(c_szFreeType, lpszKey, nDefault, lpszFile);
if (ret == nDefault)
return _GetFreeTypeProfileIntFromSection(c_szGeneral, lpszKey, nDefault, lpszFile);
else
return ret;
}
int CGdippSettings::_GetFreeTypeProfileBoundInt(LPCTSTR lpszKey, int nDefault, int nMin, int nMax, LPCTSTR lpszFile)
{
const int ret = _GetFreeTypeProfileInt(lpszKey, nDefault, lpszFile);
return Bound(ret, nMin, nMax);
}
bool CGdippSettings::_IsFreeTypeProfileSectionExists(LPCTSTR lpszKey, LPCTSTR lpszFile)
{
return m_Config.IsPartExists(lpszKey);
}
float CGdippSettings::FastGetProfileFloat(LPCTSTR lpszSection, LPCTSTR lpszKey, float fDefault)
{
wstring names = wstring((LPTSTR)lpszSection) + _T("@") + wstring((LPTSTR)m_szexeName);
if (m_Config.IsPartExists(names.c_str()) && m_Config[names.c_str()].IsValueExists(lpszKey))
return m_Config[names.c_str()][lpszKey].ToDouble();
else
if (m_Config[lpszSection].IsValueExists(lpszKey))
return m_Config[lpszSection][lpszKey].ToDouble();
else
return fDefault;
}
int CGdippSettings::FastGetProfileInt(LPCTSTR lpszSection, LPCTSTR lpszKey, int nDefault)
{
wstring names = wstring((LPTSTR)lpszSection) + _T("@") + wstring((LPTSTR)m_szexeName);
if (m_Config.IsPartExists(names.c_str()) && m_Config[names.c_str()].IsValueExists(lpszKey))
return m_Config[names.c_str()][lpszKey].ToInt();
else
if (m_Config[lpszSection].IsValueExists(lpszKey))
return m_Config[lpszSection][lpszKey].ToInt();
else
return nDefault;
}
float CGdippSettings::_GetFreeTypeProfileFloat(LPCTSTR lpszKey, float fDefault, LPCTSTR lpszFile)
{
wstring names = wstring((LPTSTR)c_szFreeType) + _T("@") + wstring((LPTSTR)m_szexeName);
if (m_Config.IsPartExists(names.c_str()) && m_Config[names.c_str()].IsValueExists(lpszKey))
return m_Config[names.c_str()][lpszKey].ToInt();
else
{
names = wstring((LPTSTR)c_szGeneral) + _T("@") + wstring((LPTSTR)m_szexeName);
if (m_Config.IsPartExists(names.c_str()) && m_Config[names.c_str()].IsValueExists(lpszKey))
return m_Config[names.c_str()][lpszKey].ToDouble();
else
if (m_Config[c_szFreeType].IsValueExists(lpszKey))
return m_Config[c_szFreeType][lpszKey].ToDouble();
if (m_Config[c_szGeneral].IsValueExists(lpszKey))
return m_Config[c_szGeneral][lpszKey].ToDouble();
else
return fDefault;
}
}
float CGdippSettings::_GetFreeTypeProfileBoundFloat(LPCTSTR lpszKey, float fDefault, float fMin, float fMax, LPCTSTR lpszFile)
{
const float ret = _GetFreeTypeProfileFloat(lpszKey, fDefault, lpszFile);
return Bound(ret, fMin, fMax);
}
DWORD CGdippSettings::FastGetProfileString(LPCTSTR lpszSection, LPCTSTR lpszKey, LPCTSTR lpszDefault, LPTSTR lpszRet, DWORD cch)
{
wstring names = wstring((LPTSTR)lpszSection) + _T("@") + wstring((LPTSTR)m_szexeName);
if (m_Config.IsPartExists(names.c_str()) && m_Config[names.c_str()].IsValueExists(lpszKey))
{
LPCTSTR p = m_Config[names.c_str()][lpszKey];
StringCchCopy(lpszRet, cch, p);
return wcslen(p);
}
else
if (m_Config[lpszSection].IsValueExists(lpszKey))
{
LPCTSTR p = m_Config[lpszSection][lpszKey];
StringCchCopy(lpszRet, cch, p);
return wcslen(p);
}
else
{
2018-11-09 11:19:37 +08:00
if (lpszDefault) {
StringCchCopy(lpszRet, cch, lpszDefault);
return wcslen(lpszDefault);
}
else {
lpszRet = NULL;
return 0;
}
}
}
DWORD CGdippSettings::_GetFreeTypeProfileString(LPCTSTR lpszKey, LPCTSTR lpszDefault, LPTSTR lpszRet, DWORD cch, LPCTSTR lpszFile)
{
wstring names = wstring((LPTSTR)c_szFreeType) + _T("@") + wstring((LPTSTR)m_szexeName);
if (m_Config.IsPartExists(names.c_str()) && m_Config[names.c_str()].IsValueExists(lpszKey))
{
LPCTSTR p = m_Config[names.c_str()][lpszKey];
StringCchCopy(lpszRet, cch, p);
return wcslen(p);
}
else
{
names = wstring((LPTSTR)c_szGeneral) + _T("@") + wstring((LPTSTR)m_szexeName);
if (m_Config.IsPartExists(names.c_str()) && m_Config[names.c_str()].IsValueExists(lpszKey))
{
LPCTSTR p = m_Config[names.c_str()][lpszKey];
StringCchCopy(lpszRet, cch, p);
return wcslen(p);
}
else
if (m_Config[c_szFreeType].IsValueExists(lpszKey))
{
LPCTSTR p = m_Config[c_szFreeType][lpszKey];
StringCchCopy(lpszRet, cch, p);
return wcslen(p);
}
else
if (m_Config[c_szGeneral].IsValueExists(lpszKey))
{
LPCTSTR p = m_Config[c_szGeneral][lpszKey];
StringCchCopy(lpszRet, cch, p);
return wcslen(p);
}
else
{
StringCchCopy(lpszRet, cch, lpszDefault);
return wcslen(lpszDefault);
}
}
}
void CGdippSettings::GetOSVersion() {
OSVERSIONINFO info;
memset(&info, 0, sizeof(OSVERSIONINFO));
info.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
GetVersionEx(&info);
m_dwOSMajorVer = info.dwMajorVersion;
m_dwOSMinorVer = info.dwMinorVersion;
}
bool CGdippSettings::LoadAppSettings(LPCTSTR lpszFile)
{
// <20>e<EFBFBD><65><EFBFBD>ݒ<EFBFBD><DD92>ǂݍ<C782><DD8D><EFBFBD>
// INI<4E>t<EFBFBD>@<40>C<EFBFBD><43><EFBFBD>̗<EFBFBD>:
// [General]
// HookChildProcesses=0
// HintingMode=0
// AntiAliasMode=0
// NormalWeight=0
// BoldWeight=0
// ItalicSlant=0
// EnableKerning=0
// MaxHeight=0
// ForceChangeFont=<3D>l<EFBFBD>r <20>o<EFBFBD>S<EFBFBD>V<EFBFBD>b<EFBFBD>N
// TextTuning=0
// TextTuningR=0
// TextTuningG=0
// TextTuningB=0
// CacheMaxFaces=0
// CacheMaxSizes=0
// CacheMaxBytes=0
// AlternativeFile=
// LoadOnDemand=0
// UseMapping=0
// LcdFilter=0
// Shadow=1,1,4
// [Individual]
// <20>l<EFBFBD>r <20>o<EFBFBD>S<EFBFBD>V<EFBFBD>b<EFBFBD>N=0,1,2,3,4,5
GetOSVersion();
WritePrivateProfileString(NULL, NULL, NULL, lpszFile);
m_Config.Clear();
m_Config.LoadFromFile(lpszFile);
TCHAR szAlternative[MAX_PATH], szMainFile[MAX_PATH];
if (FastGetProfileString(c_szGeneral, _T("AlternativeFile"), _T(""), szAlternative, MAX_PATH)) {
if (PathIsRelative(szAlternative)) {
TCHAR szDir[MAX_PATH];
StringCchCopy(szDir, MAX_PATH, lpszFile);
PathRemoveFileSpec(szDir);
PathCombine(szAlternative, szDir, szAlternative);
}
StringCchCopy(szMainFile, MAX_PATH, lpszFile); //<2F><>ԭʼ<D4AD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
StringCchCopy(m_szFileName, MAX_PATH, szAlternative);
lpszFile = m_szFileName;
m_Config.Clear();
m_Config.LoadFromFile(lpszFile);
}
2018-11-09 11:19:37 +08:00
_GetAlternativeProfileName(m_szexeName, lpszFile);
CFontSettings& fs = m_FontSettings;
fs.Clear();
fs.SetHintingMode(_GetFreeTypeProfileBoundInt(_T("HintingMode"), 0, HINTING_MIN, HINTING_MAX, lpszFile));
fs.SetAntiAliasMode(_GetFreeTypeProfileBoundInt(_T("AntiAliasMode"), 0, AAMODE_MIN, AAMODE_MAX, lpszFile));
fs.SetNormalWeight(_GetFreeTypeProfileBoundInt(_T("NormalWeight"), 0, NWEIGHT_MIN, NWEIGHT_MAX, lpszFile));
fs.SetBoldWeight(_GetFreeTypeProfileBoundInt(_T("BoldWeight"), 0, BWEIGHT_MIN, BWEIGHT_MAX, lpszFile));
fs.SetItalicSlant(_GetFreeTypeProfileBoundInt(_T("ItalicSlant"), 0, SLANT_MIN, SLANT_MAX, lpszFile));
fs.SetKerning(!!_GetFreeTypeProfileInt(_T("EnableKerning"), 0, lpszFile));
{
TCHAR szShadow[256];
CStringTokenizer token;
m_bEnableShadow = false;
if (!_GetFreeTypeProfileString(_T("Shadow"), _T(""), szShadow, countof(szShadow), lpszFile)
|| token.Parse(szShadow) < 3) {
goto SKIP;
}
for (int i=0; i<3; i++) {
m_nShadow[i] = _StrToInt(token.GetArgument(i), 0);
/*if (m_nShadow[i] <= 0) {
goto SKIP;
}*/
}
m_bEnableShadow = true;
if (token.GetCount()>=4) //<2F><><EFBFBD><EFBFBD>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD>dzɫ<C7B3><C9AB>Ӱ
m_nShadowDarkColor = _httoi(token.GetArgument(3)); //<2F><>ȡ<EFBFBD><C8A1>Ӱ
else
m_nShadowDarkColor = 0; //<2F><><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA>ɫ
2019-07-23 16:31:39 +08:00
if (token.GetCount()>=6) //<2F><><EFBFBD><EFBFBD>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӱ
{
m_nShadowLightColor = _httoi(token.GetArgument(5)); //<2F><>ȡ<EFBFBD><C8A1>Ӱ
2019-07-23 16:31:39 +08:00
m_nShadow[3] = _StrToInt(token.GetArgument(4), m_nShadow[2]); //<2F><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>
}
else
{
m_nShadowLightColor = m_nShadowDarkColor; //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>dzɫ<C7B3><C9AB>Ӱ<EFBFBD><D3B0>ͬ
2019-07-23 16:31:39 +08:00
m_nShadow[3] = m_nShadow[2]; //<2F><><EFBFBD><EFBFBD>Ҳ<EFBFBD><D2B2>ͬ
}
SKIP:
;
}
m_bHookChildProcesses = !!_GetFreeTypeProfileInt(_T("HookChildProcesses"), false, lpszFile);
m_bUseMapping = !!_GetFreeTypeProfileInt(_T("UseMapping"), false, lpszFile);
m_nBolderMode = _GetFreeTypeProfileInt(_T("BolderMode"), 0, lpszFile);
m_nGammaMode = _GetFreeTypeProfileInt(_T("GammaMode"), -1, lpszFile);
m_fGammaValue = _GetFreeTypeProfileBoundFloat(_T("GammaValue"), 1.0f, GAMMAVALUE_MIN, GAMMAVALUE_MAX, lpszFile);
m_fRenderWeight = _GetFreeTypeProfileBoundFloat(_T("RenderWeight"), 1.0f, RENDERWEIGHT_MIN, RENDERWEIGHT_MAX, lpszFile);
m_fContrast = _GetFreeTypeProfileBoundFloat(_T("Contrast"), 1.0f, CONTRAST_MIN, CONTRAST_MAX, lpszFile);
//DirectWrite/Direct2D exclusive settings
float fCalculatedDWGamma = m_fGammaValue*m_fGammaValue > 1.3 ? m_fGammaValue * m_fGammaValue / 2 : 0.7f;
// if not set, use calculated gamma as DW gamma
m_fGammaValueForDW = Bound(FastGetProfileFloat(c_szDirectWrite, _T("GammaValue"), fCalculatedDWGamma), 0.0f, GAMMAVALUE_MAX);
m_fContrastForDW = Bound(FastGetProfileFloat(c_szDirectWrite, _T("Contrast"), 1.0f), CONTRAST_MIN, CONTRAST_MAX);
m_nRenderingModeForDW = Bound(FastGetProfileInt(c_szDirectWrite, _T("RenderingMode"), 5), 0, 6);
m_fClearTypeLevelForDW = Bound(FastGetProfileFloat(c_szDirectWrite, _T("ClearTypeLevel"), 1.0f), 0.0f, 1.0f);
#ifdef _DEBUG
// GammaValue<75><65><EFBFBD>ؗp
//CHAR GammaValueTest[1025];
//sprintf(GammaValueTest, "GammaValue=%.6f\nContrast=%.6f\n", m_fGammaValue, m_fContrast);
//MessageBoxA(NULL, GammaValueTest, "GammaValue<75>e<EFBFBD>X<EFBFBD>g", 0);
#endif
m_bLoadOnDemand = !!_GetFreeTypeProfileInt(_T("LoadOnDemand"), false, lpszFile);
m_bFontLink = _GetFreeTypeProfileInt(_T("FontLink"), 0, lpszFile);
m_bIsInclude = !!_GetFreeTypeProfileInt(_T("UseInclude"), false, lpszFile);
2019-07-23 16:31:39 +08:00
m_nMaxHeight = _GetFreeTypeProfileBoundInt(_T("MaxHeight"), 0, 0, 0xfff, lpszFile); //<2F><><EFBFBD><EFBFBD>ֻ<EFBFBD>ܵ<EFBFBD>65535<33><35>cache<68><65><EFBFBD><EFBFBD><EFBFBD>ƣ<EFBFBD><C6A3><EFBFBD><EFBFBD>Ҵ<EFBFBD><D2B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʵ<EFBFBD>ʼ<EFBFBD>ֵ
m_nMinHeight = _GetFreeTypeProfileBoundInt(_T("MinHeight"), 0, 0,
(m_nMaxHeight) ? m_nMaxHeight : 0xfff, // shouldn't be greater than MaxHeight unless it is undefined
lpszFile); //Minimum size of rendered font. DPI aware alternative.
//patched by krrr https://github.com/krrr/mactype/commit/146a213e2304208cb3c1a3e6fa941a386d908761
m_nBitmapHeight = _GetFreeTypeProfileBoundInt(_T("MaxBitmap"), 0, 0, 255, lpszFile);
m_bHintSmallFont = _GetFreeTypeProfileInt(_T("HintSmallFont"), 0, lpszFile);
m_bDirectWrite = _GetFreeTypeProfileInt(_T("DirectWrite"), 0, lpszFile);
m_nLcdFilter = _GetFreeTypeProfileInt(_T("LcdFilter"), 0, lpszFile);
m_nFontSubstitutes = _GetFreeTypeProfileBoundInt(_T("FontSubstitutes"),
SETTING_FONTSUBSTITUTE_DISABLE,
SETTING_FONTSUBSTITUTE_DISABLE,
SETTING_FONTSUBSTITUTE_ALL,
lpszFile);
m_nWidthMode = SETTING_WIDTHMODE_GDI32;
/*
_GetFreeTypeProfileBoundInt(_T("WidthMode"),
SETTING_WIDTHMODE_GDI32,
SETTING_WIDTHMODE_GDI32,
SETTING_WIDTHMODE_FREETYPE,
lpszFile);*/
m_nFontLoader = _GetFreeTypeProfileBoundInt(_T("FontLoader"),
SETTING_FONTLOADER_FREETYPE,
SETTING_FONTLOADER_FREETYPE,
SETTING_FONTLOADER_WIN32,
lpszFile);
m_nCacheMaxFaces = _GetFreeTypeProfileInt(_T("CacheMaxFaces"), 64, lpszFile);
m_nCacheMaxFaces = m_nCacheMaxFaces > 64 ? m_nCacheMaxFaces : 64;
m_nCacheMaxSizes = _GetFreeTypeProfileInt(_T("CacheMaxSizes"), 1200, lpszFile);
m_nCacheMaxBytes = _GetFreeTypeProfileInt(_T("CacheMaxBytes"), 10485760, lpszFile);
//experimental settings:
m_bEnableClipBoxFix = !!_GetFreeTypeProfileIntFromSection(_T("Experimental"), _T("ClipBoxFix"), 1, lpszFile);
m_bColorFont = !!_GetFreeTypeProfileIntFromSection(_T("Experimental"), _T("ColorFont"), 0, lpszFile);
m_bInvertColor = !!_GetFreeTypeProfileIntFromSection(_T("Experimental"), _T("InvertColor"), 0, lpszFile);
#ifdef INFINALITY
// define some macros
#define INF_INT_ENV(y, def) \
nTemp = _GetFreeTypeProfileIntFromSection(_T("Infinality"), _T(y), def, lpszFile); \
FT_PutEnv(y, _ltoa(nTemp, buff, 10));
#define INF_BOOL_ENV(y, def) \
bTemp = _GetFreeTypeProfileBoolFromSection(_T("Infinality"), _T(y), def, lpszFile); \
FT_PutEnv(y, bTemp?"true":"false");
#define INF_STR_ENV(y, def) \
sTemp = _GetFreeTypeProfileStrFromSection(_T("Infinality"), _T(y), def, lpszFile); \
FT_PutEnv(y, WstringToString(sTemp).c_str());
char* buff = (char*)malloc(256);
int nTemp; bool bTemp; wstring sTemp;
// INFINALITY settings:
INF_INT_ENV( "INFINALITY_FT_CHROMEOS_STYLE_SHARPENING_STRENGTH", 0);
INF_INT_ENV( "INFINALITY_FT_CONTRAST", 0);
INF_INT_ENV( "INFINALITY_FT_STEM_FITTING_STRENGTH", 25);
INF_INT_ENV( "INFINALITY_FT_AUTOHINT_SNAP_STEM_HEIGHT", 100);
INF_INT_ENV( "INFINALITY_FT_GRAYSCALE_FILTER_STRENGTH", 0);
INF_INT_ENV( "INFINALITY_FT_WINDOWS_STYLE_SHARPENING_STRENGTH", 20);
INF_INT_ENV( "INFINALITY_FT_BRIGHTNESS", 0);
INF_INT_ENV( "INFINALITY_FT_AUTOHINT_HORIZONTAL_STEM_DARKEN_STRENGTH", 10);
INF_INT_ENV( "INFINALITY_FT_STEM_ALIGNMENT_STRENGTH", 25);
INF_INT_ENV( "INFINALITY_FT_AUTOHINT_VERTICAL_STEM_DARKEN_STRENGTH", 25);
INF_INT_ENV( "INFINALITY_FT_FRINGE_FILTER_STRENGTH", 0);
INF_INT_ENV("INFINALITY_FT_GLOBAL_EMBOLDEN_X_VALUE", 0);
INF_INT_ENV("INFINALITY_FT_GLOBAL_EMBOLDEN_Y_VALUE", 0);
INF_INT_ENV("INFINALITY_FT_BOLD_EMBOLDEN_X_VALUE", 0);
INF_INT_ENV("INFINALITY_FT_BOLD_EMBOLDEN_Y_VALUE", 0);
INF_INT_ENV("INFINALITY_FT_STEM_SNAPPING_SLIDING_SCALE", 0);
INF_BOOL_ENV("INFINALITY_FT_USE_KNOWN_SETTINGS_ON_SELECTED_FONTS", true);
INF_BOOL_ENV( "INFINALITY_FT_AUTOFIT_ADJUST_HEIGHTS", true);
INF_BOOL_ENV( "INFINALITY_FT_USE_VARIOUS_TWEAKS", true);
INF_BOOL_ENV( "INFINALITY_FT_AUTOHINT_INCREASE_GLYPH_HEIGHTS", true);
INF_BOOL_ENV( "INFINALITY_FT_STEM_DARKENING_CFF", true);
INF_BOOL_ENV( "INFINALITY_FT_STEM_DARKENING_AUTOFIT", true);
INF_STR_ENV( "INFINALITY_FT_GAMMA_CORRECTION", _T("0 100"));
INF_STR_ENV( "INFINALITY_FT_FILTER_PARAMS", _T("11 22 38 22 11"));
free(buff);
#endif
if (m_nFontLoader == SETTING_FONTLOADER_WIN32) {
// API<50><49><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><C482><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͂<EFBFBD><CD82>Ȃ̂Ŏ<CC82><C58E>O<EFBFBD><4F><EFBFBD><EFBFBD><EFBFBD>͖<EFBFBD><CD96><EFBFBD><EFBFBD><EFBFBD>
if (m_nFontSubstitutes == SETTING_FONTSUBSTITUTE_ALL) {
m_nFontSubstitutes = SETTING_FONTSUBSTITUTE_DISABLE;
}
m_bFontLink = 0;
}
// <20>t<EFBFBD>H<EFBFBD><48><EFBFBD>g<EFBFBD>w<EFBFBD><77>
ZeroMemory(&m_lfForceFont, sizeof(LOGFONT));
m_szForceChangeFont[0] = _T('\0');
_GetFreeTypeProfileString(_T("ForceChangeFont"), _T(""), m_szForceChangeFont, LF_FACESIZE, lpszFile);
// OS<4F>̃o<CC83>[<5B>W<EFBFBD><57><EFBFBD><EFBFBD><EFBFBD><EFBFBD>XP<58>ȍ~<7E><><EFBFBD>ǂ<EFBFBD><C782><EFBFBD>
//OSVERSIONINFO osvi = { sizeof(OSVERSIONINFO) };
//GetVersionEx(&osvi);
m_bIsWinXPorLater = IsWindowsXPOrGreater();
STARTUPINFO si = { sizeof(STARTUPINFO) };
GetStartupInfo(&si);
m_bRunFromGdiExe = IsGdiPPStartupInfo(si);
// if (!m_bRunFromGdiExe) {
// m_bHookChildProcesses = false;
// }
/*
const int nTextTuning = _GetFreeTypeProfileInt(_T("TextTuning"), 0, lpszFile),
nTextTuningR = _GetFreeTypeProfileInt(_T("TextTuningR"), 0, lpszFile),
nTextTuningG = _GetFreeTypeProfileInt(_T("TextTuningG"), 0, lpszFile),
nTextTuningB = _GetFreeTypeProfileInt(_T("TextTuningB"), 0, lpszFile);
InitInitTuneTable();
InitTuneTable(nTextTuning, m_nTuneTable);
InitTuneTable(nTextTuningR, m_nTuneTableR);
InitTuneTable(nTextTuningG, m_nTuneTableG);
InitTuneTable(nTextTuningB, m_nTuneTableB);*/
// m_bIsHDBench = (GetModuleHandle(_T("HDBENCH.EXE")) == GetModuleHandle(NULL));
m_arrExcludeFont.clear();
m_arrIncludeFont.clear();
m_arrExcludeModule.clear();
m_arrIncludeModule.clear();
m_arrUnloadModule.clear();
m_arrUnFontSubModule.clear();
// [Exclude]<5D>Z<EFBFBD>N<EFBFBD>V<EFBFBD><56><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>O<EFBFBD>t<EFBFBD>H<EFBFBD><48><EFBFBD>g<EFBFBD><67><EFBFBD>X<EFBFBD>g<EFBFBD><67><EFBFBD>ǂݍ<C782><DD8D><EFBFBD>
// [ExcludeModule]<5D>Z<EFBFBD>N<EFBFBD>V<EFBFBD><56><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>O<EFBFBD><4F><EFBFBD>W<EFBFBD><57><EFBFBD>[<5B><><EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>g<EFBFBD><67><EFBFBD>ǂݍ<C782><DD8D><EFBFBD>
AddListFromSection(_T("ExcludeModule"), lpszFile, m_arrExcludeModule);
//AddListFromSection(_T("ExcludeModule"), szMainFile, m_arrExcludeModule);
// [IncludeModule]<5D>Z<EFBFBD>N<EFBFBD>V<EFBFBD><56><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ώۃ<CE8F><DB83>W<EFBFBD><57><EFBFBD>[<5B><><EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>g<EFBFBD><67><EFBFBD>ǂݍ<C782><DD8D><EFBFBD>
AddListFromSection(_T("IncludeModule"), lpszFile, m_arrIncludeModule);
//AddListFromSection(_T("IncludeModule"), szMainFile, m_arrIncludeModule);
2019-07-23 16:31:39 +08:00
// [UnloadDLL]́E<CD81><45><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ص<EFBFBD>ģ<EFBFBD><C4A3>E
AddListFromSection(_T("UnloadDLL"), lpszFile, m_arrUnloadModule);
//AddListFromSection(_T("UnloadDLL"), szMainFile, m_arrUnloadModule);
2019-07-23 16:31:39 +08:00
// [ExcludeSub]<5D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6BBBB>ģ<EFBFBD><C4A3>E
AddListFromSection(L"ExcludeSub", lpszFile, m_arrUnFontSubModule);
//AddListFromSection(L"ExcludeSub", szMainFile, m_arrUnFontSubModule);
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ų<EFBFBD><C5B3><EFBFBD>ģ<EFBFBD><EFBFBD><E9A3AC><EFBFBD>ر<EFBFBD><D8B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
if (m_nFontSubstitutes)
{
ModuleHashMap::const_iterator it=m_arrUnFontSubModule.begin();
while (it!=m_arrUnFontSubModule.end())
{
if (GetModuleHandle(it->c_str()))
{
m_nFontSubstitutes = 0; //<2F>ر<EFBFBD><D8B1>
break;
}
++it;
}
}
// [Individual]<5D>Z<EFBFBD>N<EFBFBD>V<EFBFBD><56><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>t<EFBFBD>H<EFBFBD><48><EFBFBD>g<EFBFBD>ʐݒ<CA90><DD92><EFBFBD><EFBFBD>ǂݍ<C782><DD8D><EFBFBD>
wstring names = _T("LcdFilterWeight@") + wstring(m_szexeName);
if (_IsFreeTypeProfileSectionExists(names.c_str(), lpszFile))
m_bUseCustomLcdFilter = AddLcdFilterFromSection(names.c_str(), lpszFile, m_arrLcdFilterWeights);
else
m_bUseCustomLcdFilter = AddLcdFilterFromSection(_T("LcdFilterWeight"), lpszFile, m_arrLcdFilterWeights);
return true;
}
int CALLBACK CGdippSettings::EnumFontFamProc(const LOGFONT* lplf, const TEXTMETRIC* /*lptm*/, DWORD FontType, LPARAM lParam)
{
CGdippSettings* pThis = reinterpret_cast<CGdippSettings*>(lParam);
if (pThis && FontType == TRUETYPE_FONTTYPE)
pThis->m_lfForceFont = *lplf;
return 0;
}
bool CGdippSettings::AddExcludeListFromSection(LPCTSTR lpszSection, LPCTSTR lpszFile, set<wstring> & arr)
{
LPTSTR buffer = _GetPrivateProfileSection(lpszSection, lpszFile);
if (buffer == NULL) {
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
return false;
}
LPTSTR p = buffer;
TCHAR buff[LF_FACESIZE+1];
LOGFONT truefont={0};
while (*p) {
bool b = false;
2019-07-23 16:31:39 +08:00
GetFontLocalName(p, buff);//ת<><D7AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ÁE
set<wstring>::const_iterator it = arr.find(buff);
if (it==arr.end())
arr.insert(buff);
for (; *p; p++); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>
p++;
}
return false;
}
//template <typename T>
bool CGdippSettings::AddListFromSection(LPCTSTR lpszSection, LPCTSTR lpszFile, set<wstring> & arr)
{
LPTSTR buffer = _GetPrivateProfileSection(lpszSection, lpszFile);
if (buffer == NULL) {
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
return false;
}
LPTSTR p = buffer;
while (*p) {
bool b = false;
set<wstring>::const_iterator it = arr.find(p);
if (it==arr.end())
arr.insert(p);
for (; *p; p++); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>
p++;
}
return false;
}
bool CGdippSettings::AddLcdFilterFromSection(LPCTSTR lpszKey, LPCTSTR lpszFile, unsigned char* arr)
{
TCHAR buffer[100];
_GetFreeTypeProfileString(lpszKey, _T("\0"), buffer, sizeof(buffer), lpszFile);
if (buffer[0] == '\0') {
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
return false;
}
LPTSTR p = buffer;
CStringTokenizer token;
int argc = 0;
argc = token.Parse(buffer);
for (int i = 0; i < 5; i++) {
LPCTSTR arg = token.GetArgument(i);
if (!arg)
return false; //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>5<EFBFBD><35><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA>ʹ<EFBFBD>ô˲<C3B4><CBB2><EFBFBD>
arr[i] = _StrToInt(arg, arr[i]);
}
return true;
}
bool CGdippSettings::AddIndividualFromSection(LPCTSTR lpszSection, LPCTSTR lpszFile, IndividualArray& arr)
{
LPTSTR buffer = _GetPrivateProfileSection(lpszSection, lpszFile);
if (buffer == NULL) {
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
return false;
}
LPTSTR p = buffer;
TCHAR buff[LF_FACESIZE+1];
LOGFONT truefont={0};
while (*p) {
bool b = false;
LPTSTR pnext = p;
for (; *pnext; pnext++);
//"<22>l<EFBFBD>r <20>o<EFBFBD>S<EFBFBD>V<EFBFBD>b<EFBFBD>N=0,0" <20>݂<EFBFBD><DD82><EFBFBD><EFBFBD>ȕ<EFBFBD><C895><EFBFBD><EFBFBD><EFBFBD><EFBFBD>𕪊<EFBFBD>
LPTSTR value = _tcschr(p, _T('='));
CStringTokenizer token;
int argc = 0;
if (value) {
*value++ = _T('\0');
argc = token.Parse(value);
}
2019-07-23 16:31:39 +08:00
GetFontLocalName(p, buff);//ת<><D7AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ÁE
CFontIndividual fi(buff);
const CFontSettings& fsCommon = m_FontSettings;
CFontSettings& fs = fi.GetIndividual();
//Individual<61><6C><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>΋<EFBFBD><CE8B>ʐݒ<CA90><DD92><EFBFBD><EFBFBD>g<EFBFBD><67>
fs = fsCommon;
for (int i = 0; i < MAX_FONT_SETTINGS; i++) {
LPCTSTR arg = token.GetArgument(i);
if (!arg)
break;
const int n = _StrToInt(arg, fsCommon.GetParam(i));
fs.SetParam(i, n);
}
for (int i = 0 ; i < arr.GetSize(); i++) {
if (arr[i] == fi) {
b = true;
break;
}
}
if (!b) {
arr.Add(fi);
#ifdef _DEBUG
TRACE(_T("Individual: %s, %d, %d, %d, %d, %d, %d\n"), fi.GetName(),
fs.GetParam(0), fs.GetParam(1), fs.GetParam(2), fs.GetParam(3), fs.GetParam(4), fs.GetParam(5));
#endif
}
p = pnext;
p++;
}
return false;
}
LPTSTR CGdippSettings::_GetPrivateProfileSection(LPCTSTR lpszSection, LPCTSTR lpszFile)
{
return const_cast<LPTSTR>((LPCTSTR)m_Config[lpszSection]);
}
//atol<6F>Ƀf<C983>t<EFBFBD>H<EFBFBD><48><EFBFBD>g<EFBFBD>l<EFBFBD><6C><EFBFBD>Ԃ<EFBFBD><D482><EFBFBD><EFBFBD><EFBFBD>ɂ<EFBFBD><C982><EFBFBD><EFBFBD><EFBFBD>ȕ<EFBFBD>
int CGdippSettings::_StrToInt(LPCTSTR pStr, int nDefault)
{
#define isspace(ch) (ch == _T('\t') || ch == _T(' '))
#define isdigit(ch) ((_TUCHAR)(ch - _T('0')) <= 9)
int ret;
bool neg = false;
LPCTSTR pStart;
for (; isspace(*pStr); pStr++);
switch (*pStr) {
case _T('-'):
neg = true;
case _T('+'):
pStr++;
break;
}
pStart = pStr;
ret = 0;
for (; isdigit(*pStr); pStr++) {
ret = 10 * ret + (*pStr - _T('0'));
}
if (pStr == pStart) {
return nDefault;
}
return neg ? -ret : ret;
#undef isspace
#undef isdigit
}
int CGdippSettings::_httoi(const TCHAR *value)
{
struct CHexMap
{
TCHAR chr;
int value;
};
const int HexMapL = 16;
CHexMap HexMap[HexMapL] =
{
{'0', 0}, {'1', 1},
{'2', 2}, {'3', 3},
{'4', 4}, {'5', 5},
{'6', 6}, {'7', 7},
{'8', 8}, {'9', 9},
{'A', 10}, {'B', 11},
{'C', 12}, {'D', 13},
{'E', 14}, {'F', 15}
};
TCHAR *mstr = _tcsupr(_tcsdup(value));
TCHAR *s = mstr;
int result = 0;
if (*s == '0' && *(s + 1) == 'X') s += 2;
bool firsttime = true;
while (*s != '\0')
{
bool found = false;
for (int i = 0; i < HexMapL; i++)
{
if (*s == HexMap[i].chr)
{
if (!firsttime) result <<= 4;
result |= HexMap[i].value;
found = true;
break;
}
}
if (!found) break;
s++;
firsttime = false;
}
free(mstr);
return result;
}
//atof<6F>Ƀf<C983>t<EFBFBD>H<EFBFBD><48><EFBFBD>g<EFBFBD>l<EFBFBD><6C><EFBFBD>Ԃ<EFBFBD><D482><EFBFBD><EFBFBD><EFBFBD>ɂ<EFBFBD><C982><EFBFBD><EFBFBD><EFBFBD>ȕ<EFBFBD>
float CGdippSettings::_StrToFloat(LPCTSTR pStr, float fDefault)
{
#define isspace(ch) (ch == _T('\t') || ch == _T(' '))
#define isdigit(ch) ((_TUCHAR)(ch - _T('0')) <= 9)
int ret_i;
int ret_d;
float ret;
bool neg = false;
LPCTSTR pStart;
for (; isspace(*pStr); pStr++);
switch (*pStr) {
case _T('-'):
neg = true;
case _T('+'):
pStr++;
break;
}
pStart = pStr;
ret = 0;
ret_i = 0;
ret_d = 1;
for (; isdigit(*pStr); pStr++) {
ret_i = 10 * ret_i + (*pStr - _T('0'));
}
if (*pStr == _T('.')) {
pStr++;
for (; isdigit(*pStr); pStr++) {
ret_i = 10 * ret_i + (*pStr - _T('0'));
ret_d *= 10;
}
}
ret = (float)ret_i / (float)ret_d;
if (pStr == pStart) {
return fDefault;
}
return neg ? -ret : ret;
#undef isspace
#undef isdigit
}
bool CGdippSettings::IsFontExcluded(LPCSTR lpFaceName) const
{
WCHAR szStack[LF_FACESIZE];
LPWSTR lpUnicode = _StrDupExAtoW(lpFaceName, -1, szStack, LF_FACESIZE, NULL);
if (!lpUnicode) {
return false;
}
bool b = IsFontExcluded(lpUnicode);
if (lpUnicode != szStack)
free(lpUnicode);
return b;
}
bool CGdippSettings::IsFontExcluded(LPCWSTR lpFaceName) const
{
FontHashMap::const_iterator it = m_arrExcludeFont.find(lpFaceName);
bool bExcluded = it != m_arrExcludeFont.end(); // if it's excluded, true
if (!bExcluded && m_arrIncludeFont.size() != 0) { // if it's not excluded, and includefont enabled
FontHashMap::const_iterator it = m_arrIncludeFont.find(lpFaceName);
bExcluded = it == m_arrIncludeFont.end(); // check if it's included
}
return bExcluded;
}
void CGdippSettings::AddFontExclude(LPCWSTR lpFaceName)
{
if (!IsFontExcluded(lpFaceName))
m_arrExcludeFont.insert(lpFaceName);
}
bool CGdippSettings::IsProcessUnload() const
{
if (m_bRunFromGdiExe) {
return false;
}
GetEnvironmentVariableW(L"MACTYPE_FORCE_LOAD", NULL, 0);
if (GetLastError()!=ERROR_ENVVAR_NOT_FOUND)
return false;
ModuleHashMap::const_iterator it = m_arrUnloadModule.begin();
for(; it != m_arrUnloadModule.end(); ++it) {
if (IsFolder(it->c_str())) {
// if the user is trying to include a folder instead of a single executable.
if (GetAppDir() == LowerCase(*it)) {
return true;
}
}
else
if (GetModuleHandleW(it->c_str())) {
return true;
}
}
return false;
}
bool CGdippSettings::IsExeUnload(LPCTSTR lpApp) const //<2F><>E<EFBFBD><45>Ƿ<EFBFBD><C7B7>ں<EFBFBD><DABA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD><D0B1>?
{
if (m_bRunFromGdiExe) {
return false;
}
GetEnvironmentVariableW(L"MACTYPE_FORCE_LOAD", NULL, 0);
if (GetLastError()!=ERROR_ENVVAR_NOT_FOUND)
return false;
ModuleHashMap::const_iterator it = m_arrUnloadModule.begin();
for(; it != m_arrUnloadModule.end(); ++it) {
2019-07-23 16:31:39 +08:00
if (!lstrcmpi(lpApp, it->c_str())) { //ƥ<><C6A5><EFBFBD>ų<EFBFBD>ρE
return true;
}
}
return false;
}
bool CGdippSettings::IsExeInclude(LPCTSTR lpApp) const //<2F><>E<EFBFBD><45>Ƿ<EFBFBD><C7B7>ڰ<EFBFBD><DAB0><EFBFBD><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD><D0B1>?
{
if (m_bRunFromGdiExe) {
return false;
}
GetEnvironmentVariableW(L"MACTYPE_FORCE_LOAD", NULL, 0);
if (GetLastError()!=ERROR_ENVVAR_NOT_FOUND)
return false;
ModuleHashMap::const_iterator it = m_arrIncludeModule.begin();
for(; it != m_arrIncludeModule.end(); ++it) {
2019-07-23 16:31:39 +08:00
if (!lstrcmpi(lpApp, it->c_str())) { //ƥ<><C6A5><EFBFBD>ų<EFBFBD>ρE
return true;
}
}
return false;
}
bool CGdippSettings::IsProcessExcluded() const
{
if (m_bRunFromGdiExe) {
return false;
}
GetEnvironmentVariableW(L"MACTYPE_FORCE_EXCLUDE", NULL, 0);
if (GetLastError() != ERROR_ENVVAR_NOT_FOUND)
return true;
GetEnvironmentVariableW(L"MACTYPE_FORCE_LOAD", NULL, 0);
if (GetLastError()!=ERROR_ENVVAR_NOT_FOUND)
return false;
ModuleHashMap::const_iterator it = m_arrExcludeModule.begin();
for(; it != m_arrExcludeModule.end(); ++it) {
if (IsFolder(it->c_str())) {
// if the user is trying to exclude a folder instead of a single executable.
if (GetAppDir().find(LowerCase(*it)) == 0) {
return true;
}
}
else
if (GetModuleHandleW(it->c_str())) {
return true;
}
}
return false;
}
bool CGdippSettings::IsProcessIncluded() const
{
if (m_bRunFromGdiExe) {
return true;
}
GetEnvironmentVariableW(L"MACTYPE_FORCE_LOAD", NULL, 0);
if (GetLastError()!=ERROR_ENVVAR_NOT_FOUND)
return true;
ModuleHashMap::const_iterator it = m_arrIncludeModule.begin();
for(; it != m_arrIncludeModule.end(); ++it) {
if (IsFolder(it->c_str())) {
// if the user is trying to include a folder instead of a single executable.
if (GetAppDir() == LowerCase(*it)) {
return true;
}
}
else
if (GetModuleHandleW(it->c_str())) {
return true;
}
}
return false;
}
void CGdippSettings::InitInitTuneTable()
{
int i, *table;
#define init_table(name) \
for (i=0,table=name; i<256; i++) table[i] = i
init_table(m_nTuneTable);
init_table(m_nTuneTableR);
init_table(m_nTuneTableG);
init_table(m_nTuneTableB);
#undef init_table
}
// <20>e<EFBFBD>[<5B>u<EFBFBD><75><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֐<EFBFBD> 0 - 12<31>܂<EFBFBD>
// LCD<43>p<EFBFBD>e<EFBFBD>[<5B>u<EFBFBD><75><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֐<EFBFBD> <20>e0 - 12<31>܂<EFBFBD>
void CGdippSettings::InitTuneTable(int v, int* table)
{
int i;
int col;
double tmp, p;
if (v < 0) {
return;
}
v = Min(v, 12);
p = (double)v;
p = 1 - (p / (p + 10.0));
for(i = 0;i < 256;i++){
tmp = (double)i / 255.0;
tmp = pow(tmp, p);
col = 255 - (int)(tmp * 255.0 + 0.5);
table[255 - i] = col;
}
}
//<2F><><EFBFBD>‚<EFBFBD><C282><EFBFBD><EFBFBD>Ȃ<EFBFBD><C882><EFBFBD>͋<EFBFBD><CD8B>ʐݒ<CA90><DD92><EFBFBD><EFBFBD>Ԃ<EFBFBD>
extern BOOL g_ccbIndividual;
const CFontSettings& CGdippSettings::FindIndividual(LPCTSTR lpFaceName) const
{
CFontIndividual* p = m_arrIndividual.Begin();
CFontIndividual* end = m_arrIndividual.End();
if (lpFaceName && *lpFaceName==L'@')
++lpFaceName; //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD>ú<EFBFBD><C3BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
StringHashFont hash(lpFaceName);
for(; p != end; ++p) {
if (p->GetHash() == hash) {
return p->GetIndividual();
}
}
return GetFontSettings();
}
2018-11-09 11:19:37 +08:00
int CGdippSettings::_GetAlternativeProfileName(LPTSTR lpszName, LPCTSTR lpszFile)
{
2018-11-09 11:19:37 +08:00
TCHAR szexe[MAX_PATH + 1];
TCHAR* pexe = szexe + GetModuleFileName(NULL, szexe, MAX_PATH);
while (pexe >= szexe && *pexe != '\\')
pexe--;
pexe++;
wstring exename = _T("General@") + wstring((LPTSTR)pexe);
if (FastGetProfileString(exename.c_str(), _T("Alternative"), NULL, lpszName, MAX_PATH))
{
return true;
}
2018-11-09 11:19:37 +08:00
else
{
//StringCchCopy(lpszName, MAX_PATH + 1, pexe);
return false;
}
}
2018-11-09 11:19:37 +08:00
bool CGdippSettings::CopyForceFont(LOGFONT& lf, const LOGFONT& lfOrg) const
2018-03-31 20:45:26 +08:00
{
_ASSERTE(m_bDelayedInit);
//__asm{ int 3 }
GetEnvironmentVariableW(L"MACTYPE_FONTSUBSTITUTES_ENV", NULL, 0);
if (GetLastError()!=ERROR_ENVVAR_NOT_FOUND)
return false;
//&lf == &lfOrg<72><67><EFBFBD><EFBFBD>
bool bForceFont = !!GetForceFontName();
BOOL bFontExist = true;
const LOGFONT *lplf;
if (bForceFont) {
lplf = &m_lfForceFont;
} else {
2018-11-09 11:19:37 +08:00
lplf = GetFontSubstitutesInfo().lookup((LOGFONT&)lfOrg);
2018-03-31 20:45:26 +08:00
if (lplf) bForceFont = true;
}
if (bForceFont) {
memcpy(&lf, &lfOrg, sizeof(LOGFONT)-sizeof(lf.lfFaceName));
StringCchCopy(lf.lfFaceName, LF_FACESIZE, lplf->lfFaceName);
}
return bForceFont;
}
//<2F>l<EFBFBD>I<EFBFBD><49>char(-128<32>`127)<29>ŏ\<5C><>
const char CFontSettings::m_bound[MAX_FONT_SETTINGS][2] = {
{ HINTING_MIN, HINTING_MAX }, //Hinting
{ AAMODE_MIN, AAMODE_MAX }, //AAMode
{ NWEIGHT_MIN, NWEIGHT_MAX }, //NormalWeight
{ BWEIGHT_MIN, BWEIGHT_MAX }, //BoldWeight
{ SLANT_MIN, SLANT_MAX }, //ItalicSlant
{ 0, 1 }, //Kerning
};
CFontLinkInfo::CFontLinkInfo()
{
memset(&info, 0, sizeof info);
2019-07-23 16:31:39 +08:00
memset(AllowDefaultLink, 1, sizeof(AllowDefaultLink)); //Ĭ<><C4AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
}
CFontLinkInfo::~CFontLinkInfo()
{
clear();
}
/*
static int CALLBACK EnumFontCallBack(const LOGFONT *lplf, const TEXTMETRIC *lptm, DWORD / *FontType* /, LPARAM lParam)
{
LOGFONT * lf=(LOGFONT *)lParam;
StringCchCopy(lf->lfFaceName, LF_FACESIZE, lplf->lfFaceName);
return 0;
}
static void GetFontLocalName(LOGFONT& lf) //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ı<EFBFBD><C4B1>ػ<EFBFBD><D8BB><EFBFBD><EFBFBD><EFBFBD>
{
HDC dc=GetDC(NULL);
EnumFontFamiliesEx(dc, &lf, &EnumFontCallBack, (LPARAM)&lf, 0);
ReleaseDC(NULL, dc);
}*/
void CFontLinkInfo::init()
{
const TCHAR REGKEY1[] = _T("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\FontLink\\SystemLink");
const TCHAR REGKEY2[] = _T("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Fonts");
const TCHAR REGKEY3[] = _T("SYSTEM\\CurrentControlSet\\Control\\FontAssoc\\Associated DefaultFonts");
const TCHAR REGKEY4[] = _T("SYSTEM\\CurrentControlSet\\Control\\FontAssoc\\Associated Charset");
HKEY h1;
HKEY h2;
if (ERROR_SUCCESS != RegOpenKeyEx(HKEY_LOCAL_MACHINE, REGKEY1, 0, KEY_QUERY_VALUE, &h1)) return;
if (ERROR_SUCCESS != RegOpenKeyEx(HKEY_LOCAL_MACHINE, REGKEY2, 0, KEY_QUERY_VALUE, &h2)) {
RegCloseKey(h1);
2019-07-23 16:31:39 +08:00
return;
}
//OSVERSIONINFO sOsVinfo={sizeof(OSVERSIONINFO),0,0,0,0,{0}};
//GetVersionEx(&sOsVinfo); //<2F><><EFBFBD>ò<EFBFBD><C3B2><EFBFBD>ϵͳ<CFB5><EFBFBD><E6B1BE>
//const CGdippSettings* pSettings = CGdippSettings::GetInstance();
WCHAR* name = new WCHAR[0x2000];
DWORD namesz;
DWORD valuesz;
WCHAR* value = new WCHAR[0x2000];
WCHAR* buf = new WCHAR[0x2000];
const DWORD nBufSize = 0x2000 * sizeof(WCHAR);
LONG rc;
DWORD regtype;
2019-07-23 16:31:39 +08:00
for (int k = 0; ; ++k) { //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>е<EFBFBD><D0B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>́E
namesz = nBufSize;
valuesz = nBufSize;
2019-07-23 16:31:39 +08:00
rc = RegEnumValue(h2, k, name, &namesz, 0, &regtype, (LPBYTE)value, &valuesz); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѱ<EFBFBD><D1B0>
if (rc == ERROR_NO_MORE_ITEMS) break;
if (rc != ERROR_SUCCESS) break;
if (regtype != REG_SZ) continue;
StringCchCopy(buf, nBufSize / sizeof(buf[0]), name);
if (buf[wcslen(buf) - 1] == L')') { //ȥ<><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
LPWSTR p;
if ((p = wcsrchr(buf, L'(')) != NULL) {
*p = 0;
}
}
while (buf[wcslen(buf)-1] == L' ')
buf[wcslen(buf)-1] = 0;
2019-07-23 16:31:39 +08:00
//<2F><><EFBFBD>õĶ<C3B5>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ÁE
FontNameCache.Add(value, buf);
}
int row = 0;
LOGFONT truefont;
memset(&truefont, 0, sizeof(truefont));
for (int i = 0; row < INFOMAX; ++i) {
int col = 0;
namesz = nBufSize;
valuesz = nBufSize;
rc = RegEnumValue(h1, i, name, &namesz, 0, &regtype, (LPBYTE)value, &valuesz); //<2F><><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
if (rc == ERROR_NO_MORE_ITEMS) break;
if (rc != ERROR_SUCCESS) break;
if (regtype != REG_MULTI_SZ) continue; //<2F><>Ч<EFBFBD><D0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʵ<EFBFBD><CAB5><EFBFBD><EFBFBD>
TCHAR buff[LF_FACESIZE];
GetFontLocalName(name, buff);
2019-07-23 16:31:39 +08:00
info[row][col] = _wcsdup(buff); //<2F><>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ÁE
++col;
for (LPCWSTR linep = value; col < FONTMAX && *linep; linep += wcslen(linep) + 1) {
LPCWSTR valp = NULL;
for (LPCWSTR p = linep; *p; ++p) {
if (*p == L',' && ((char)*(p+1)<0x30 || (char)*(p+1)>0x39)) //<2F><><EFBFBD><EFBFBD>Ѱ<EFBFBD><D1B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1B9A9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
{
LPWSTR lp;
StringCchCopy(buf, nBufSize / sizeof(buf[0]), p + 1);
if (lp=wcschr(buf, L','))
*lp = 0;
valp = buf;
break;
}
}
if (!valp) { //û<>ҵ<EFBFBD><D2B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E1B9A9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
/*for (int k = 0; ; ++k) {
namesz = sizeof name;
value2sz = sizeof value2;
2019-07-23 16:31:39 +08:00
rc = RegEnumValue(h2, k, name, &namesz, 0, &regtype, (LPBYTE)value2, &value2sz); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѱ<EFBFBD><D1B0>
if (rc == ERROR_NO_MORE_ITEMS) break;
if (rc != ERROR_SUCCESS) break;
if (regtype != REG_SZ) continue;
2019-07-23 16:31:39 +08:00
if (lstrcmpi(value2, linep) != 0) continue; //Ѱ<><D1B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ÁE
StringCchCopyW(buf, sizeof(buf)/sizeof(buf[0]), name);
if (buf[wcslen(buf) - 1] == L')') { //ȥ<><C8A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
LPWSTR p;
if ((p = wcsrchr(buf, L'(')) != NULL) {
*p = 0;
}
}
while (buf[wcslen(buf)-1] == L' ')
buf[wcslen(buf)-1] = 0;
valp = buf;
break;
}*/
LPWSTR lp;
StringCchCopy(buf, nBufSize / sizeof(buf[0]), linep);
if (lp=wcschr(buf, L','))
*lp = 0;
valp = FontNameCache.Find((TCHAR*)buf);
}
if (valp) {
GetFontLocalName((TCHAR*)valp, buff);;
//StringCchCopy(truefont.lfFaceName, LF_FACESIZE, buff); //<2F><><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD><E1B9B9>
2019-07-23 16:31:39 +08:00
//pSettings->CopyForceFont(truefont, truefont); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E6BBBB>́E
info[row][col] = _wcsdup(buff);//truefont.lfFaceName); //<2F><><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD><EFBFBD>ӱ<EFBFBD><D3B1><EFBFBD>
++col;
}
}
2019-07-23 16:31:39 +08:00
if (col == 1) { //ֻ<><D6BB>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD>ӣ<EFBFBD>ɾ<EFBFBD><C9BE><EFBFBD><EFBFBD>
free(info[row][0]);
info[row][0] = NULL;
} else {
/*if (sOsVinfo.dwMajorVersion>=6 && sOsVinfo.dwMinorVersion>=1) //<2F><EFBFBD><E6B1BE>>=6.1<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Win7ϵ<EFBFBD><EFBFBD>
{
2019-07-23 16:31:39 +08:00
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӱ<EFBFBD><D3B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>E
LPWSTR swapbuff[32];
2019-07-23 16:31:39 +08:00
memcpy(swapbuff, info[row], 32*sizeof(LPWSTR)); //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դ<EFBFBD>ƹ<EFBFBD><C6B9><EFBFBD>
for (int i=1; i<col; i++)
2019-07-23 16:31:39 +08:00
info[row][i]=swapbuff[col-i]; //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӱ<EFBFBD>E
}*/
++row;
}
}
RegCloseKey(h1);
RegCloseKey(h2);
LOGFONT syslf = {0};
HGDIOBJ h = ORIG_GetStockObject(DEFAULT_GUI_FONT);
if (h) {
ORIG_GetObjectW(h, sizeof syslf, &syslf);
GetFontLocalName(syslf.lfFaceName, syslf.lfFaceName);
}
extern HFONT g_alterGUIFont;
const CGdippSettings* pSettings = CGdippSettings::GetInstance();
2019-07-23 16:31:39 +08:00
if (pSettings->FontSubstitutes()>=SETTING_FONTSUBSTITUTE_ALL && pSettings->CopyForceFont(truefont, syslf)) //ʹ<><CAB9>́E<CD81><45>滻ģʽʱ<CABD><CAB1><EFBFBD><EFBFBD><E6BBBB>ϵͳ<CFB5><CDB3>́E
{
WCHAR envname[30] = L"MT_SYSFONT";
WCHAR envvalue[30] = { 0 };
HFONT tempfont;
if (GetEnvironmentVariable(L"MT_SYSFONT", envvalue, 29) && GetObjectType(tempfont = (HFONT)wcstoull(envvalue, 0 ,10)) == OBJ_FONT)//<2F>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
{
2019-07-23 16:31:39 +08:00
g_alterGUIFont = tempfont; //ֱ<><D6B1>ʹ<EFBFBD><CAB9><EFBFBD><EFBFBD>ǰ<EFBFBD><C7B0><EFBFBD><EFBFBD>́E
}
else
{
2019-07-23 16:31:39 +08:00
g_alterGUIFont = CreateFontIndirectW(&truefont); //<2F><><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD>µ<EFBFBD><C2B5><EFBFBD><E6BBBB>́E
_ui64tow((ULONG_PTR)g_alterGUIFont, envvalue, 10); //ת<><D7AA>Ϊ<EFBFBD>ַ<EFBFBD><D6B7><EFBFBD>
SetEnvironmentVariable(envname, envvalue); //дȁE<C881><45><EFBFBD><EFBFBD><EFBFBD><EFBFBD>?
}
}
//<2F><><EFBFBD>ڻ<EFBFBD>ȡ<EFBFBD><C8A1>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>Ĭ<EFBFBD><C4AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
memset(DefaultFontLink, 0, sizeof(TCHAR)*(FF_DECORATIVE+1)*(LF_FACESIZE+1)); //<2F><>ʼ<EFBFBD><CABC>Ϊ0
HKEY h3;
DWORD len;
if (ERROR_SUCCESS != RegOpenKeyEx(HKEY_LOCAL_MACHINE, REGKEY3, 0, KEY_QUERY_VALUE, &h3)) return;
len = (LF_FACESIZE+1)*sizeof(TCHAR);
RegQueryValueEx(h3, _T("FontPackage"), 0, &regtype, (LPBYTE)DefaultFontLink[1], &len);
len = (LF_FACESIZE+1)*sizeof(TCHAR);
RegQueryValueEx(h3, _T("FontPackageDecorative"), 0, &regtype, (LPBYTE)DefaultFontLink[FF_DECORATIVE], &len);
len = (LF_FACESIZE+1)*sizeof(TCHAR);
RegQueryValueEx(h3, _T("FontPackageDontCare"), 0, &regtype, (LPBYTE)DefaultFontLink[FF_DONTCARE], &len);
len = (LF_FACESIZE+1)*sizeof(TCHAR);
RegQueryValueEx(h3, _T("FontPackageModern"), 0, &regtype, (LPBYTE)DefaultFontLink[FF_MODERN], &len);
len = (LF_FACESIZE+1)*sizeof(TCHAR);
RegQueryValueEx(h3, _T("FontPackageRoman"), 0, &regtype, (LPBYTE)DefaultFontLink[FF_ROMAN], &len);
len = (LF_FACESIZE+1)*sizeof(TCHAR);
RegQueryValueEx(h3, _T("FontPackageScript"), 0, &regtype, (LPBYTE)DefaultFontLink[FF_SCRIPT], &len);
len = (LF_FACESIZE+1)*sizeof(TCHAR);
RegQueryValueEx(h3, _T("FontPackageSwiss"), 0, &regtype, (LPBYTE)DefaultFontLink[FF_SWISS], &len);
RegCloseKey(h3);
for (int i=0; i<FF_DECORATIVE+1; ++i) //ת<><D7AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
{
if (!*DefaultFontLink[i])
GetFontLocalName(DefaultFontLink[i], DefaultFontLink[i]);
}
//<2F><><EFBFBD>ڻ<EFBFBD>ȡ<EFBFBD><C8A1>Ӧ<EFBFBD><D3A6>CodePage<67>Ƿ<EFBFBD><C7B7><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD>fontlink<6E><6B>Ĭ<EFBFBD>϶<EFBFBD><CFB6><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӡ<EFBFBD>
HKEY h4;
if (ERROR_SUCCESS != RegOpenKeyEx(HKEY_LOCAL_MACHINE, REGKEY4, 0, KEY_QUERY_VALUE, &h4)) return;
for (int i=0; i<0xff; ++i)
{
namesz = nBufSize;
valuesz = nBufSize;
rc = RegEnumValue(h4, i, name, &namesz, 0, &regtype, (LPBYTE)value, &valuesz); //<2F><><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>charset<65><74>ֵ
if (rc == ERROR_NO_MORE_ITEMS) break;
if (rc != ERROR_SUCCESS) break;
if (regtype != REG_SZ) continue;
if (_tcsicmp(value, _T("YES")))
{
TCHAR* p = name;
while (*p!=_T('(') && p-name<(int)namesz) ++p;
++p;
AllowDefaultLink[_tcstol(p,NULL,16)]=false;
}
}
RegCloseKey(h4);
delete[]name;
delete[]value;
delete[]buf;
}
void CFontLinkInfo::clear()
{
for (int i = 0; i < INFOMAX; ++i) {
for (int j = 0; j < FONTMAX; ++j) {
free(info[i][j]);
info[i][j] = NULL;
}
}
}
const LPCWSTR * CFontLinkInfo::lookup(LPCWSTR fontname) const
{
for (int i = 0; i < INFOMAX && info[i][0]; ++i) {
if (_wcsicmp(fontname, info[i][0]) == 0) {
return &info[i][1];
}
}
return NULL;
}
LPCWSTR CFontLinkInfo::get(int row, int col) const
{
if ((unsigned int)row >= (unsigned int)INFOMAX || (unsigned int)col >= (unsigned int)FONTMAX) {
return NULL;
}
return info[row][col];
}
CFontSubstituteData::CFontSubstituteData()
{
memset(this, 0, sizeof *this);
}
int CALLBACK
CFontSubstituteData::EnumFontFamProc(const LOGFONT *lplf, const TEXTMETRIC *lptm, DWORD /*FontType*/, LPARAM lParam)
{
CFontSubstituteData& self = *(CFontSubstituteData *)lParam;
self.m_lf = *lplf;
return 0;
}
bool CFontSubstituteData::initnocheck(LPCTSTR config) {
memset(this, 0, sizeof *this);
TCHAR buf[LF_FACESIZE + 20];
StringCchCopy(buf, countof(buf), config);
memset(&m_lf, 0, sizeof m_lf);
LPTSTR p;
for (p = buf + lstrlen(buf) - 1; p >= buf; --p) {
if (*p == _T(',')) {
*p++ = 0;
break;
}
}
if (p >= buf) {
StringCchCopy(m_lf.lfFaceName, countof(m_lf.lfFaceName), buf);
m_lf.lfCharSet = (BYTE)CGdippSettings::_StrToInt(p + 1, 0);
m_bCharSet = true;
}
else {
StringCchCopy(m_lf.lfFaceName, LF_FACESIZE, buf);
m_lf.lfCharSet = DEFAULT_CHARSET;
m_bCharSet = false;
}
return m_lf.lfFaceName[0] != 0;
}
bool CFontSubstituteData::init(LPCTSTR config)
{
memset(this, 0, sizeof *this);
TCHAR buf[LF_FACESIZE + 20];
StringCchCopy(buf, countof(buf), config);
LOGFONT lf;
memset(&lf, 0, sizeof lf);
LPTSTR p;
for (p = buf + lstrlen(buf) - 1; p >= buf; --p ) {
if (*p == _T(',')) {
*p++ = 0;
break;
}
}
if (p >= buf) {
StringCchCopy(lf.lfFaceName, countof(lf.lfFaceName), buf);
lf.lfCharSet = (BYTE)CGdippSettings::_StrToInt(p + 1, 0);
m_bCharSet = true;
} else {
StringCchCopy(lf.lfFaceName, LF_FACESIZE, buf);
lf.lfCharSet = DEFAULT_CHARSET;
m_bCharSet = false;
}
HDC hdc = GetDC(NULL);
EnumFontFamiliesEx(hdc, &lf, &CFontSubstituteData::EnumFontFamProc, (LPARAM)this, 0);
ReleaseDC(NULL, hdc);
return m_lf.lfFaceName[0] != 0;
}
bool
CFontSubstituteData::operator == (const CFontSubstituteData& o) const
{
if (m_bCharSet != o.m_bCharSet) return false;
if (m_bCharSet) {
if (m_lf.lfCharSet != o.m_lf.lfCharSet) return false;
}
if (_wcsicmp(m_lf.lfFaceName, o.m_lf.lfFaceName) == 0) return true;
return false;
}
// We scan the registry and see if there is any font mapping whose mapping target is also one of our substitution source,
// and we add them as our rules.
void CFontSubstitutesInfo::initreg()
{
const LPCTSTR REGKEY = _T("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\FontSubstitutes");
HKEY h;
if (ERROR_SUCCESS != RegOpenKeyEx(HKEY_LOCAL_MACHINE, REGKEY, 0, KEY_QUERY_VALUE, &h)) return;
CFontSubstituteData k;
CFontSubstituteData v;
std::vector<WCHAR> name(0x2000);
std::vector<WCHAR> value(0x2000);
DWORD namesz, valuesz;
DWORD regtype;
for (int i = 0; ; ++i) {
namesz = name.size();
valuesz = value.size();
LONG rc = RegEnumValue(h, i, name.data(), &namesz, 0, &regtype, (LPBYTE)value.data(), &valuesz);
if (rc == ERROR_NO_MORE_ITEMS) break;
if (rc != ERROR_SUCCESS) break;
if (regtype != REG_SZ) continue;
if (k.initnocheck(name.data()) && v.init(value.data())) { // init k and v (k is a virtual font)
int pos = FindKey(v);
if ( pos >= 0) { // check if v is substituted to another font x
Add(k, GetValueAt(pos)); // add k=>x as well
}
}
}
RegCloseKey(h);
}
void
CFontSubstitutesInfo::initini(const CFontSubstitutesIniArray& iniarray)
{
CFontSubstitutesIniArray::const_iterator it=iniarray.begin();
// LOGFONT truefont={0}, truefont2={0};
// TCHAR* buff, *buff2;
for (; it!=iniarray.end(); ++it) {
LPCTSTR inistr = it->c_str();
LPTSTR buf = _tcsdup(inistr);
for (LPTSTR vp = buf; *vp; ++vp) {
if (*vp == _T('=')) {
*vp++ = 0;
CFontSubstituteData k;
CFontSubstituteData v;
if (k.init(buf) && v.init(vp)) {
if (FindKey(k) < 0 && k.m_bCharSet == v.m_bCharSet) Add(k, v);
}
/* StringCchCopy(truefont.lfFaceName, LF_FACESIZE, buf);
truefont.lfCharSet=DEFAULT_CHARSET;
if (!GetFontLocalName(truefont))
2019-07-23 16:31:39 +08:00
continue; //û<>д<EFBFBD><D0B4><EFBFBD>́E
buff = truefont.lfFaceName;
StringCchCopy(truefont2.lfFaceName, LF_FACESIZE, vp);
truefont2.lfCharSet=DEFAULT_CHARSET;
if (!GetFontLocalName(truefont2))
2019-07-23 16:31:39 +08:00
continue; //û<>д<EFBFBD><D0B4><EFBFBD>́E
buff2 = truefont2.lfFaceName;
if (m_mfontsub.find(buff)==m_mfontsub.end())
m_mfontsub[buff]=wstring(buff2);
*/
}
}
free(buf);
}
}
void
CFontSubstitutesInfo::init(int nFontSubstitutes, const CFontSubstitutesIniArray& iniarray)
{
if (nFontSubstitutes >= SETTING_FONTSUBSTITUTE_ALL) {
initini(iniarray); // init substitution from ini array
initreg(); // add more substitutions from registry
}
//if (nFontSubstitutes >= SETTING_FONTSUBSTITUTE_ALL)
}
void GetMacTypeInternalFontName(LOGFONT* lf, LPTSTR fn)
{
StringCchCopy(fn, 9, _T("MACTYPE_"));
fn+=8;
TCHAR* lfbyte=(TCHAR*)lf;
for (int i=0;i<(sizeof(LOGFONT)-sizeof(TCHAR)*LF_FACESIZE+1)/sizeof(TCHAR);i++)
*fn++=_T('0') + *lfbyte++;
*fn=0;
}
const LOGFONT *
CFontSubstitutesInfo::lookup(LOGFONT& lf) const
{
if (GetSize() <= 0) return NULL;
//bFontExist = true;
CFontSubstituteData v;
CFontSubstituteData k;
k.m_bCharSet = true;
k.m_lf = lf;
TCHAR * buff; //<2F><><45><D9BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʵ<EFBFBD><CAB5><EFBFBD>?
LOGFONT mylf(lf);
if (!(buff = FontNameCache.Find((TCHAR*)lf.lfFaceName)))
{
TCHAR localname[LF_FACESIZE+1];
if (GetFontLocalName(mylf.lfFaceName, localname)) {
FontNameCache.Add((TCHAR*)lf.lfFaceName, localname);
StringCchCopy(mylf.lfFaceName, LF_FACESIZE, localname);
}
else
{
TCHAR inName[LF_FACESIZE];
GetMacTypeInternalFontName(&mylf, inName);
if (!(buff = FontNameCache.Find(inName)))
{
mylf.lfClipPrecision = FONT_MAGIC_NUMBER;
HFONT tempfont = CreateFontIndirect(&mylf);
HDC dc=CreateCompatibleDC(NULL);
HFONT oldfont = SelectFont(dc, tempfont);
ORIG_GetTextFaceW(dc, LF_FACESIZE, mylf.lfFaceName);
SelectFont(dc, oldfont);
DeleteFont(tempfont);
DeleteDC(dc);
FontNameCache.Add(inName, mylf.lfFaceName);
}
}
buff = mylf.lfFaceName;
}
StringCchCopy(k.m_lf.lfFaceName, LF_FACESIZE, buff);
StringCchCopy(lf.lfFaceName, LF_FACESIZE, buff);
int pos = FindKey(k);
if (pos < 0) {
k.m_bCharSet = false;
pos = FindKey(k);
}
if (pos >= 0) {
return (const LOGFONT *)&GetValueAt(pos);
}
return NULL;
}
CFontFaceNamesEnumerator::CFontFaceNamesEnumerator(LPCWSTR facename, int nFontFamily) : m_pos(0)
{
//CCriticalSectionLock __lock;
const CGdippSettings* pSettings = CGdippSettings::GetInstance();
TCHAR buff[LF_FACESIZE+1];
GetFontLocalName((TCHAR*)facename, buff);
LPCWSTR srcfacenames[] = {
buff, NULL, NULL
};
int destpos = 0;
for (const LPCWSTR *p = srcfacenames; *p && destpos < MAXFACENAMES; ++p) {
m_facenames[destpos++] = *p;
if (pSettings->FontLink()) {
const LPCWSTR *facenamep = pSettings->GetFontLinkInfo().lookup(*p);
if (facenamep) {
for ( ; *facenamep && **facenamep && destpos < MAXFACENAMES; ++facenamep) {
m_facenames[destpos++] = *facenamep;
}
}
}
}
m_facenames[0] = facename;
if (pSettings->IsWinXPorLater() && pSettings->FontLink() &&
pSettings->FontLoader() == SETTING_FONTLOADER_FREETYPE) {
m_facenames[destpos++] = pSettings->GetFontLinkInfo().sysfn(nFontFamily);
}
m_endpos = destpos;
}