使用 NVAPI SDK 检索全局配置文件设置(显示在 Nvidia 控制面板中)时出现问题
Problems retrieving the Global Profile settings (shown in the Nvidia Control Panel) with NVAPI SDK
我想使用 NVIDIA 的 NVAPI SDK 来检索 NVIDIA 控制面板的 3D 设置的 全局 配置文件中显示的所有设置。
参考文档在这里:NVAPI Driver Settings (DRS) APIs
来源
这是我目前所掌握的,主要基于我在网上找到的示例:
#include <Windows.h>
#include <string>
#include "nvapi.h"
#include "NvApiDriverSettings.h"
NvDRSSessionHandle _session;
NvDRSProfileHandle _profile;
int main()
{
if (NvAPI_Initialize() != NVAPI_OK)
throw std::runtime_error("NvAPI: NvAPI can't be initialized");
if (NvAPI_DRS_CreateSession(&_session) != NVAPI_OK)
throw std::runtime_error("NvAPI: Can't create NvAPI session");
if (NvAPI_DRS_LoadSettings(_session) != NVAPI_OK)
throw std::runtime_error("NvAPI: Can't load system settings");
if (NvAPI_DRS_GetCurrentGlobalProfile(_session, &_profile) != NVAPI_OK)
throw std::runtime_error("NvAPI: Can't get global profile");
NVDRS_PROFILE profileInformation = {0};
profileInformation.version = NVDRS_PROFILE_VER;
if (NvAPI_DRS_GetProfileInfo(_session, _profile, &profileInformation) != NVAPI_OK)
throw std::runtime_error("NvAPI: Can't get current global profile information");
if(profileInformation.numOfSettings> 0)
{
NVDRS_SETTING* setArray = new NVDRS_SETTING[profileInformation.numOfSettings];
NvU32 numSetRead = profileInformation.numOfSettings,i;
setArray[0].version = NVDRS_SETTING_VER;
if (NvAPI_DRS_EnumSettings(_session, _profile, 0, &numSetRead, setArray) != NVAPI_OK)
throw std::runtime_error("NvAPI: Can't get profile setting enum");
for(i=0; i<numSetRead; i++)
{
if(setArray[i].settingLocation!=NVDRS_CURRENT_PROFILE_LOCATION)
{
continue;
}
NvAPI_DRS_GetSettingNameFromId(setArray[i].settingId, &setArray[i].settingName);
wprintf(L"Setting Name: %s\n", setArray[i].settingName);
printf("Setting ID: %X\n", setArray[i].settingId);
printf("Predefined? : %d\n", setArray[i].isCurrentPredefined);
switch(setArray[i].settingType)
{
case NVDRS_DWORD_TYPE:
printf("Setting Value: %X\n", setArray[i].u32CurrentValue);
break;
case NVDRS_BINARY_TYPE:
{
unsigned int len;
printf("Setting Binary (length=%d) :", setArray[i].binaryCurrentValue.valueLength);
for(len=0; len<setArray[i].binaryCurrentValue.valueLength; len++)
{
printf(" %02x", setArray[i].binaryCurrentValue.valueData[len]);
}
printf("\n");
}
break;
case NVDRS_WSTRING_TYPE:
wprintf(L"Setting Value: %s\n", setArray[i].wszCurrentValue);
break;
}
}
}
printf("\n");
// Clean up
NvAPI_DRS_DestroySession(_session);
_session = 0;
return 0;
}
控制台输出
这是我目前得到的输出:
Setting Name: Vertical Sync Tear Control
Setting ID: 5A375C
Predefined? : 0
Setting Value: 96861077
Setting Name: Vertical Sync
Setting ID: A879CF
Predefined? : 0
Setting Value: 8416747
Setting Name: ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
Setting ID: 80303A19
Predefined? : 1
Setting Value: 1
Setting Name: ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
Setting ID: 80857A28
Predefined? : 1
Setting Value: 1
Setting Name: ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
Setting ID: 809D5F60
Predefined? : 1
Setting Value: 1
问题
一些设置名称 未 正确显示 (???...
),并且大多数设置名称似乎缺失(环境遮挡、各向异性、电源管理等)。
我的配置文件有误还是初始化不正确?
相关问题
一些问题:
NvAPI_DRS_GetCurrentGlobalProfile
和NvAPI_DRS_GetBaseProfile
有根本的区别吗?他们似乎必须做同样的事情。
- 当前全局配置文件是否真的与我打开 NVIDIA 控制面板时看到的全局参数相对应?
setArray[i].settingName
是无符号短整型数组类型。我相信将它转换为 char * (带有 wprintf
和 %s )是问题的来源。
你的数组有未初始化的内存
NVDRS_SETTING* setArray = new NVDRS_SETTING[profileInformation.numOfSettings];
这意味着您可以在其中找到任何类型的数据(因此您打印的字符串无效)。
要么考虑对其进行零初始化
NVDRS_SETTING*setArray = new NVDRS_SETTING[profileInformation.numOfSettings];
// Remember `setArray` is a pointer
memset(setArray, 0, sizeof(*setArray) * profileInformation.numOfSettings);
或使用 std::vector
,在这种情况下,它也会对您的结构进行零初始化(尽管有一个显式构造函数来完成这项工作会使事情变得更容易和更可靠)。
最后考虑跳过无效条目,您可能还想跳过无效的命名条目(您现在可以可靠地检测到)
if (setArray[i].settingName[0] == 0x00)
continue;
- NvAPI_DRS_GetCurrentGlobalProfile和NvAPI_DRS_GetBaseProfile有本质区别吗?他们似乎必须做同样的事情。
The Base Profile is a profile that always exists and is not associated with a specific
application. The settings in the Base Profile are applied to all processes on the system
automatically.
A profile with no applications is called a Global Profile. The settings from a Global
Profile are applied to all processes on the system, but only if that profile is selected to be
the Current Global Profile in the system.
所以在你的情况下它可能是,但如果你设置不同的当前全局配置文件则不会(cfr。NvAPI_DRS_SetCurrentGlobalProfile
)。
- 当前全局配置文件是否与我打开 NVIDIA 控制面板时看到的全局参数相对应?
大多数情况下,许多其他高级设置隐藏在控制面板中,但可通过代码 and/or 其他高级工具访问。更深的层次可能涉及未记录的函数,但如果您不知道自己在做什么,您可能会破坏很多东西。
我想使用 NVIDIA 的 NVAPI SDK 来检索 NVIDIA 控制面板的 3D 设置的 全局 配置文件中显示的所有设置。
参考文档在这里:NVAPI Driver Settings (DRS) APIs
来源
这是我目前所掌握的,主要基于我在网上找到的示例:
#include <Windows.h>
#include <string>
#include "nvapi.h"
#include "NvApiDriverSettings.h"
NvDRSSessionHandle _session;
NvDRSProfileHandle _profile;
int main()
{
if (NvAPI_Initialize() != NVAPI_OK)
throw std::runtime_error("NvAPI: NvAPI can't be initialized");
if (NvAPI_DRS_CreateSession(&_session) != NVAPI_OK)
throw std::runtime_error("NvAPI: Can't create NvAPI session");
if (NvAPI_DRS_LoadSettings(_session) != NVAPI_OK)
throw std::runtime_error("NvAPI: Can't load system settings");
if (NvAPI_DRS_GetCurrentGlobalProfile(_session, &_profile) != NVAPI_OK)
throw std::runtime_error("NvAPI: Can't get global profile");
NVDRS_PROFILE profileInformation = {0};
profileInformation.version = NVDRS_PROFILE_VER;
if (NvAPI_DRS_GetProfileInfo(_session, _profile, &profileInformation) != NVAPI_OK)
throw std::runtime_error("NvAPI: Can't get current global profile information");
if(profileInformation.numOfSettings> 0)
{
NVDRS_SETTING* setArray = new NVDRS_SETTING[profileInformation.numOfSettings];
NvU32 numSetRead = profileInformation.numOfSettings,i;
setArray[0].version = NVDRS_SETTING_VER;
if (NvAPI_DRS_EnumSettings(_session, _profile, 0, &numSetRead, setArray) != NVAPI_OK)
throw std::runtime_error("NvAPI: Can't get profile setting enum");
for(i=0; i<numSetRead; i++)
{
if(setArray[i].settingLocation!=NVDRS_CURRENT_PROFILE_LOCATION)
{
continue;
}
NvAPI_DRS_GetSettingNameFromId(setArray[i].settingId, &setArray[i].settingName);
wprintf(L"Setting Name: %s\n", setArray[i].settingName);
printf("Setting ID: %X\n", setArray[i].settingId);
printf("Predefined? : %d\n", setArray[i].isCurrentPredefined);
switch(setArray[i].settingType)
{
case NVDRS_DWORD_TYPE:
printf("Setting Value: %X\n", setArray[i].u32CurrentValue);
break;
case NVDRS_BINARY_TYPE:
{
unsigned int len;
printf("Setting Binary (length=%d) :", setArray[i].binaryCurrentValue.valueLength);
for(len=0; len<setArray[i].binaryCurrentValue.valueLength; len++)
{
printf(" %02x", setArray[i].binaryCurrentValue.valueData[len]);
}
printf("\n");
}
break;
case NVDRS_WSTRING_TYPE:
wprintf(L"Setting Value: %s\n", setArray[i].wszCurrentValue);
break;
}
}
}
printf("\n");
// Clean up
NvAPI_DRS_DestroySession(_session);
_session = 0;
return 0;
}
控制台输出
这是我目前得到的输出:
Setting Name: Vertical Sync Tear Control
Setting ID: 5A375C
Predefined? : 0
Setting Value: 96861077
Setting Name: Vertical Sync
Setting ID: A879CF
Predefined? : 0
Setting Value: 8416747
Setting Name: ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
Setting ID: 80303A19
Predefined? : 1
Setting Value: 1
Setting Name: ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
Setting ID: 80857A28
Predefined? : 1
Setting Value: 1
Setting Name: ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
Setting ID: 809D5F60
Predefined? : 1
Setting Value: 1
问题
一些设置名称 未 正确显示 (???...
),并且大多数设置名称似乎缺失(环境遮挡、各向异性、电源管理等)。
我的配置文件有误还是初始化不正确?
相关问题
一些问题:
NvAPI_DRS_GetCurrentGlobalProfile
和NvAPI_DRS_GetBaseProfile
有根本的区别吗?他们似乎必须做同样的事情。- 当前全局配置文件是否真的与我打开 NVIDIA 控制面板时看到的全局参数相对应?
setArray[i].settingName
是无符号短整型数组类型。我相信将它转换为 char * (带有 wprintf
和 %s )是问题的来源。
你的数组有未初始化的内存
NVDRS_SETTING* setArray = new NVDRS_SETTING[profileInformation.numOfSettings];
这意味着您可以在其中找到任何类型的数据(因此您打印的字符串无效)。
要么考虑对其进行零初始化
NVDRS_SETTING*setArray = new NVDRS_SETTING[profileInformation.numOfSettings];
// Remember `setArray` is a pointer
memset(setArray, 0, sizeof(*setArray) * profileInformation.numOfSettings);
或使用 std::vector
,在这种情况下,它也会对您的结构进行零初始化(尽管有一个显式构造函数来完成这项工作会使事情变得更容易和更可靠)。
最后考虑跳过无效条目,您可能还想跳过无效的命名条目(您现在可以可靠地检测到)
if (setArray[i].settingName[0] == 0x00)
continue;
- NvAPI_DRS_GetCurrentGlobalProfile和NvAPI_DRS_GetBaseProfile有本质区别吗?他们似乎必须做同样的事情。
The Base Profile is a profile that always exists and is not associated with a specific application. The settings in the Base Profile are applied to all processes on the system automatically.
A profile with no applications is called a Global Profile. The settings from a Global Profile are applied to all processes on the system, but only if that profile is selected to be the Current Global Profile in the system.
所以在你的情况下它可能是,但如果你设置不同的当前全局配置文件则不会(cfr。NvAPI_DRS_SetCurrentGlobalProfile
)。
- 当前全局配置文件是否与我打开 NVIDIA 控制面板时看到的全局参数相对应?
大多数情况下,许多其他高级设置隐藏在控制面板中,但可通过代码 and/or 其他高级工具访问。更深的层次可能涉及未记录的函数,但如果您不知道自己在做什么,您可能会破坏很多东西。