Is there a cross platform way to get the monitor's refresh rate in python (2.6)? I'm using Pygame and PyOpenGL, if that helps.

I don't need to change the refresh rate, I just need to know what it is.

link|improve this question

What are you going to use the refresh rate for, if I might ask? If you are writing a game loop or something, you generally don't need to use the refresh rate. – Mike Daniels Aug 3 '09 at 23:49
When my app is running in full screen, v-sync is enabled which caps the fps at the refresh rate. V-sync isn't enabled in windowed mode, and the fps is many times faster. I want it to run at the same speed in windowed and fullscreen, so I want to set the maximum fps as the refresh rate of the monitor. – Brad Zeis Aug 4 '09 at 1:22
You should not tie your game logic and your render rate together as much as you have. Look here for some alternative game loop constructions: dewitters.koonsolo.com/gameloop.html – Mike Daniels Aug 4 '09 at 4:29
feedback

1 Answer

I am not sure about the platform you use, but on window you can use ctypes or win32api to get details about devices e.g. using win32api

import win32api

def printInfo(device):
    print device.DeviceName, device.DeviceString
    settings = win32api.EnumDisplaySettings(device.DeviceName, 0)
    for varName in ['Color', 'BitsPerPel', 'DisplayFrequency']:
        print "%s: %s"%(varName, getattr(settings, varName))

device = win32api.EnumDisplayDevices()
printInfo(device)

output on my system:

\\.\DISPLAY1 Mobile Intel(R) 945GM Express Chipset Family
Color: 0
BitsPerPel: 8
DisplayFrequency: 60
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.