ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

Prevent screen saver from running by simulate keyboard events using windows API

2022-04-05 12:00:54  阅读:231  来源: 互联网

标签:Prevent signal windows screen keyboard keybd time event


The condition of triggering screen saver to run is that no input event of any input device in a period of time.

The key idea is that we can simulate keyboard event periodically to prevent screen saver ro run.

The Windows API to simulate keyboard event is keybd_event:

void keybd_event(
    BYTE bVk,
    BYTE bScan,
    DWORD dwFlags,
    ULONG_PTR dwExtraInfo
);

API document can be found here: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-keybd_event

To make it easy, we use python to implement it, a pre-requisite model "pywin32" should be installed first:

pip install pywin32

In addition to this, we must carefully choose a "save" key that to make sure this key will not affect user, we don't like any unexpected characters appear during our work. We use key, which has no impact to input.

Further more, we need to touch keyboard twice, the former to triggers WM_KEYUP, the later triggers WM_KEYDOWN, that's a whole keyboard event.

We must periodically trigger this keyboard event, its a simple polling model —— the progress of sleep for a while and awake to do something and repeat forever.

At last, to make our program behave user friendly, we setup signal handler for SIGINT and SIGTERM, in the handler we just print "bye !" and exit.

Let's see the code, you can also download it here: screen-on.py

import signal
import win32api
import win32con
import time

INTERVAL_SECS = 60
INTERVAL_SLEEP = 5
KB_VCODE = win32con.VK_SCROLL

def sigHandler(signum, frame):
    print('byte !');
    exit()

def setupSignalHandler():
    signal.signal(signal.SIGINT, sigHandler)
    signal.signal(signal.SIGTERM, sigHandler)

def touchKeyboard():
    win32api.keybd_event(KB_VCODE, 0, 0, 0)
    win32api.keybd_event(KB_VCODE, 0, win32con.KEYEVENTF_KEYUP, 0)

def main():
    setupSignalHandler()
    lastTicks = time.time()
    while True:
        ticks = time.time()
        if (ticks - lastTicks > INTERVAL_SECS):
            touchKeyboard()
            lastTicks = ticks
            print('touch at ', ticks);

        time.sleep(INTERVAL_SLEEP)

if __name__ == '__main__':
    main()

run it in command line box:

python screen-on.py

Hope you enjoy it, have fun

标签:Prevent,signal,windows,screen,keyboard,keybd,time,event
来源: https://www.cnblogs.com/labs798/p/16101843.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有