C ++ Linux:获取监视器的刷新率

时间:2013-07-22 21:20:54

标签: c++ linux frame-rate xorg

在Windows中,winapi提供了一个报告监视器信息的功能:

DEVMODE dm;
dm.dmSize = sizeof(DEVMODE);

EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &dm);

int FPS = dm.dmDisplayFrequency;

在Linux上有什么相同的东西? Linux手册页引导我进入一个快板库函数,但不仅仅是我没有使用allegro,该函数来自一个非常过时的版本的库,据说只适用于Windows。

3 个答案:

答案 0 :(得分:3)

使用XRandr API(man 3 Xrandr)。请看这里的例子:

您还可以查看xrandr(1)的代码。


Edit1:为了后人:

示例代码略有调整,因此更多的是演示:

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <iostream>
#include <unistd.h>
#include <X11/Xlib.h>
#include <X11/extensions/Xrandr.h>

int main()
{
    int num_sizes;
    Rotation current_rotation;

    Display *dpy = XOpenDisplay(NULL);
    Window root = RootWindow(dpy, 0);
    XRRScreenSize *xrrs = XRRSizes(dpy, 0, &num_sizes);
    //
    //     GET CURRENT RESOLUTION AND FREQUENCY
    //
    XRRScreenConfiguration *conf = XRRGetScreenInfo(dpy, root);
    short current_rate = XRRConfigCurrentRate(conf);
    SizeID current_size_id = XRRConfigCurrentConfiguration(conf, &current_rotation);

    int current_width = xrrs[current_size_id].width;
    int current_height = xrrs[current_size_id].height;
    std::cout << "current_rate = " << current_rate << std::endl;
    std::cout << "current_width = " << current_width << std::endl;
    std::cout << "current_height = " << current_height << std::endl;

    XCloseDisplay(dpy);
}

编译:

g++ 17797636.cpp -o 17797636 -lX11 -lXrandr

输出:

$ ./17797636 
current_rate = 50
current_width = 1920
current_height = 1080

答案 1 :(得分:1)

伊万的答案对我没有用;我猜xrandr自2013年以来发生了变化?命令行工具xrandr可以正确读取我的刷新率,但是它的源代码对于我来说太复杂了,以至于不愿意复制它的操作方式。相反,我选择笨拙地将工作委托给整个xrandr程序。我cr脚的解决方案粘贴在下面。

请注意,当连接多个显示设备时,此解决方案可能不可靠,并且xrandr再次更改时,有一天可能会中断。

(pstream.h由Jonathan Wakely的PStreams库提供,在这里引用:https://stackoverflow.com/a/10702464/1364776

我仅使用它将命令的输出转换为std::string;显然,还有其他多种方法可以执行此操作,因此您可以根据需要使用其中一种。)

#include <pstream.h>
#include <cctype>
#include <cstdlib>
#include <cmath>

float getRefreshRate()
{
    try
    {
        redi::ipstream queryStream("xrandr");
        std::string chunk;
        while (queryStream >> chunk)
        {
            auto rateEnd = chunk.find("*");
            if (rateEnd != std::string::npos)
            {
                auto rateBeginning = rateEnd;
                while (std::isdigit(chunk[rateBeginning]) || std::ispunct(chunk[rateBeginning]))
                    --rateBeginning;
                ++rateBeginning;

                auto numberString = chunk.substr(rateBeginning, rateEnd - rateBeginning);
                float rate = std::strtof(numberString.data(), nullptr);
                if (rate != 0 && rate != HUGE_VALF)
                    return rate;
            }
        }
    }
    catch (...)
    {
    }

    return 60; // I am not proud of any of this :(
}

答案 2 :(得分:0)

一个简单的例子:

#include <X11/Xlib.h>
#include <X11/extensions/Xrandr.h>

int main(int argc, char *argv[])
{
  Display *display = XOpenDisplay(NULL);
  Window default_root_window = XDefaultRootWindow(display);

  XRRScreenResources *screen_resources = XRRGetScreenResources(display, default_root_window);

  RRMode active_mode_id = 0;
  for (int i = 0; i < screen_resources->ncrtc; ++i) {
    XRRCrtcInfo *crtc_info = XRRGetCrtcInfo(display, screen_resources, screen_resources->crtcs[i]);
    // If None, then is not displaying the screen contents
    if (crtc_info->mode != None) {
      active_mode_id = crtc_info->mode; 
    }
  }

  double active_rate = 0;
  for (int i = 0; i < screen_resources->nmode; ++i) {
    XRRModeInfo mode_info = screen_resources->modes[i];
    if (mode_info.id == active_mode_id) {
      active_rate = (double)mode_info.dotClock / ((double)mode_info.hTotal * (double)mode_info.vTotal);
    }
  }

  printf("Active rate is: %.1f\n", active_rate);

  return 0;
}