From fcaa8a01c7e239c3fc2e858e208364fc17c428a3 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Mon, 15 May 2023 05:52:26 +0000 Subject: automatic import of python-pydirectinput --- python-pydirectinput.spec | 279 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 279 insertions(+) create mode 100644 python-pydirectinput.spec (limited to 'python-pydirectinput.spec') diff --git a/python-pydirectinput.spec b/python-pydirectinput.spec new file mode 100644 index 0000000..a508c08 --- /dev/null +++ b/python-pydirectinput.spec @@ -0,0 +1,279 @@ +%global _empty_manifest_terminate_build 0 +Name: python-PyDirectInput +Version: 1.0.4 +Release: 1 +Summary: Python mouse and keyboard input automation for Windows using Direct Input. +License: MIT License +URL: https://github.com/learncodebygaming/pydirectinput +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5f/c0/cbcc5f1653d956ee2109b604747b7eaf37d59e50b41cc9dedabedf70aec6/PyDirectInput-1.0.4.tar.gz +BuildArch: noarch + + +%description +# PyDirectInput + +This library aims to replicate the functionality of the PyAutoGUI mouse and keyboard inputs, but by utilizing DirectInput scan codes and the more modern SendInput() win32 function. PyAutoGUI uses Virtual Key Codes (VKs) and the deprecated mouse_event() and keybd_event() win32 functions. You may find that PyAutoGUI does not work in some applications, particularly in video games and other software that rely on DirectX. If you find yourself in that situation, give this library a try! + +`pip install pydirectinput` + +This package is intended to be used in conjunction with PyAutoGUI. You can continue to use PyAutoGUI for all of its cool features and simply substitute in PyDirectInput for the inputs that aren't working. The function interfaces are the same, but this package may not implement all optional parameters and features. + +Want to see a missing feature implemented? Why not give it a try yourself! I welcome all pull requests and will be happy to work with you to get a solution fleshed out. Get involved in open source! Learn more about programming! Pad your resume! Have fun! + +Source code available at https://github.com/learncodebygaming/pydirectinput + +Watch the tutorial here: Coming soon + +## Example Usage + +```python + >>> import pyautogui + >>> import pydirectinput + >>> pydirectinput.moveTo(100, 150) # Move the mouse to the x, y coordinates 100, 150. + >>> pydirectinput.click() # Click the mouse at its current location. + >>> pydirectinput.click(200, 220) # Click the mouse at the x, y coordinates 200, 220. + >>> pydirectinput.move(None, 10) # Move mouse 10 pixels down, that is, move the mouse relative to its current position. + >>> pydirectinput.doubleClick() # Double click the mouse at the + >>> pydirectinput.press('esc') # Simulate pressing the Escape key. + >>> pydirectinput.keyDown('shift') + >>> pydirectinput.keyUp('shift') +``` + +## Documentation + +The DirectInput key codes can be found by following the breadcrumbs in the documentation here: https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-input + +You might also be interested in the main SendInput documentation here: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-sendinput + +You can find a discussion of the problems with using vkCodes in video games here: https://stackoverflow.com/questions/14489013/simulate-python-keypresses-for-controlling-a-game + +## Testing + +To run the supplied tests: first setup a virtualenv. Then you can pip install this project in an editable state by doing `pip install -e .`. This allows any edits you make to these project files to be reflected when you run the tests. Run the test file with `python3 tests`. + +I have been testing with Half-Life 2 to confirm that these inputs work with DirectX games. + +## Features Implemented + +- Fail Safe Check +- Pause +- position() +- size() +- moveTo(x, y) +- move(x, y) / moveRel(x, y) +- mouseDown() +- mouseUp() +- click() +- keyDown() +- keyUp() +- press() +- write() / typewrite() + +## Features NOT Implemented + +- scroll functions +- drag functions +- hotkey functions +- support for special characters requiring the shift key (ie. '!', '@', '#'...) +- ignored parameters on mouse functions: duration, tween, logScreenshot +- ignored parameters on keyboard functions: logScreenshot + + + + +%package -n python3-PyDirectInput +Summary: Python mouse and keyboard input automation for Windows using Direct Input. +Provides: python-PyDirectInput +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-PyDirectInput +# PyDirectInput + +This library aims to replicate the functionality of the PyAutoGUI mouse and keyboard inputs, but by utilizing DirectInput scan codes and the more modern SendInput() win32 function. PyAutoGUI uses Virtual Key Codes (VKs) and the deprecated mouse_event() and keybd_event() win32 functions. You may find that PyAutoGUI does not work in some applications, particularly in video games and other software that rely on DirectX. If you find yourself in that situation, give this library a try! + +`pip install pydirectinput` + +This package is intended to be used in conjunction with PyAutoGUI. You can continue to use PyAutoGUI for all of its cool features and simply substitute in PyDirectInput for the inputs that aren't working. The function interfaces are the same, but this package may not implement all optional parameters and features. + +Want to see a missing feature implemented? Why not give it a try yourself! I welcome all pull requests and will be happy to work with you to get a solution fleshed out. Get involved in open source! Learn more about programming! Pad your resume! Have fun! + +Source code available at https://github.com/learncodebygaming/pydirectinput + +Watch the tutorial here: Coming soon + +## Example Usage + +```python + >>> import pyautogui + >>> import pydirectinput + >>> pydirectinput.moveTo(100, 150) # Move the mouse to the x, y coordinates 100, 150. + >>> pydirectinput.click() # Click the mouse at its current location. + >>> pydirectinput.click(200, 220) # Click the mouse at the x, y coordinates 200, 220. + >>> pydirectinput.move(None, 10) # Move mouse 10 pixels down, that is, move the mouse relative to its current position. + >>> pydirectinput.doubleClick() # Double click the mouse at the + >>> pydirectinput.press('esc') # Simulate pressing the Escape key. + >>> pydirectinput.keyDown('shift') + >>> pydirectinput.keyUp('shift') +``` + +## Documentation + +The DirectInput key codes can be found by following the breadcrumbs in the documentation here: https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-input + +You might also be interested in the main SendInput documentation here: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-sendinput + +You can find a discussion of the problems with using vkCodes in video games here: https://stackoverflow.com/questions/14489013/simulate-python-keypresses-for-controlling-a-game + +## Testing + +To run the supplied tests: first setup a virtualenv. Then you can pip install this project in an editable state by doing `pip install -e .`. This allows any edits you make to these project files to be reflected when you run the tests. Run the test file with `python3 tests`. + +I have been testing with Half-Life 2 to confirm that these inputs work with DirectX games. + +## Features Implemented + +- Fail Safe Check +- Pause +- position() +- size() +- moveTo(x, y) +- move(x, y) / moveRel(x, y) +- mouseDown() +- mouseUp() +- click() +- keyDown() +- keyUp() +- press() +- write() / typewrite() + +## Features NOT Implemented + +- scroll functions +- drag functions +- hotkey functions +- support for special characters requiring the shift key (ie. '!', '@', '#'...) +- ignored parameters on mouse functions: duration, tween, logScreenshot +- ignored parameters on keyboard functions: logScreenshot + + + + +%package help +Summary: Development documents and examples for PyDirectInput +Provides: python3-PyDirectInput-doc +%description help +# PyDirectInput + +This library aims to replicate the functionality of the PyAutoGUI mouse and keyboard inputs, but by utilizing DirectInput scan codes and the more modern SendInput() win32 function. PyAutoGUI uses Virtual Key Codes (VKs) and the deprecated mouse_event() and keybd_event() win32 functions. You may find that PyAutoGUI does not work in some applications, particularly in video games and other software that rely on DirectX. If you find yourself in that situation, give this library a try! + +`pip install pydirectinput` + +This package is intended to be used in conjunction with PyAutoGUI. You can continue to use PyAutoGUI for all of its cool features and simply substitute in PyDirectInput for the inputs that aren't working. The function interfaces are the same, but this package may not implement all optional parameters and features. + +Want to see a missing feature implemented? Why not give it a try yourself! I welcome all pull requests and will be happy to work with you to get a solution fleshed out. Get involved in open source! Learn more about programming! Pad your resume! Have fun! + +Source code available at https://github.com/learncodebygaming/pydirectinput + +Watch the tutorial here: Coming soon + +## Example Usage + +```python + >>> import pyautogui + >>> import pydirectinput + >>> pydirectinput.moveTo(100, 150) # Move the mouse to the x, y coordinates 100, 150. + >>> pydirectinput.click() # Click the mouse at its current location. + >>> pydirectinput.click(200, 220) # Click the mouse at the x, y coordinates 200, 220. + >>> pydirectinput.move(None, 10) # Move mouse 10 pixels down, that is, move the mouse relative to its current position. + >>> pydirectinput.doubleClick() # Double click the mouse at the + >>> pydirectinput.press('esc') # Simulate pressing the Escape key. + >>> pydirectinput.keyDown('shift') + >>> pydirectinput.keyUp('shift') +``` + +## Documentation + +The DirectInput key codes can be found by following the breadcrumbs in the documentation here: https://docs.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-input + +You might also be interested in the main SendInput documentation here: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-sendinput + +You can find a discussion of the problems with using vkCodes in video games here: https://stackoverflow.com/questions/14489013/simulate-python-keypresses-for-controlling-a-game + +## Testing + +To run the supplied tests: first setup a virtualenv. Then you can pip install this project in an editable state by doing `pip install -e .`. This allows any edits you make to these project files to be reflected when you run the tests. Run the test file with `python3 tests`. + +I have been testing with Half-Life 2 to confirm that these inputs work with DirectX games. + +## Features Implemented + +- Fail Safe Check +- Pause +- position() +- size() +- moveTo(x, y) +- move(x, y) / moveRel(x, y) +- mouseDown() +- mouseUp() +- click() +- keyDown() +- keyUp() +- press() +- write() / typewrite() + +## Features NOT Implemented + +- scroll functions +- drag functions +- hotkey functions +- support for special characters requiring the shift key (ie. '!', '@', '#'...) +- ignored parameters on mouse functions: duration, tween, logScreenshot +- ignored parameters on keyboard functions: logScreenshot + + + + +%prep +%autosetup -n PyDirectInput-1.0.4 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-PyDirectInput -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot - 1.0.4-1 +- Package Spec generated -- cgit v1.2.3