zhmiscellany 5.7.3__py3-none-any.whl → 5.7.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
zhmiscellany/macro.py CHANGED
@@ -19,8 +19,6 @@ get_mouse_xy = get_mouse_xy
19
19
  def click_pixel(x=None, y=None, click_duration=None, right_click=False, middle_click=False, shift=False, ctrl=False, act_start=True, act_end=True, click_end_duration=None, double_click=False, animation_time=None, animation_fps=60, animation_easing=True, relative=False, ensure_movement=True, pre_click_duration=None, pre_click_wiggle=False, click=True):
20
20
  if not click:
21
21
  act_start=False;act_end=False
22
- if relative:
23
- ensure_movement = False
24
22
  if right_click and middle_click:
25
23
  raise Exception('Both right click and middle click were set to true. Make sure just one is set to true at a time, or neither.')
26
24
  if type(x) != tuple and type(x) != list:
@@ -116,8 +114,8 @@ def click_pixel(x=None, y=None, click_duration=None, right_click=False, middle_c
116
114
  else:
117
115
  cx = x
118
116
  cy = y
119
- if ensure_movement:
120
- limit = 2**5
117
+ limit = 2 ** 5
118
+ if ensure_movement and (not relative):
121
119
  move_mouse(cx, cy, relative=relative)
122
120
  for i in range(limit):
123
121
  if get_mouse_xy() != (x, y):
@@ -125,8 +123,18 @@ def click_pixel(x=None, y=None, click_duration=None, right_click=False, middle_c
125
123
  else:
126
124
  break
127
125
  else:
128
- if not (animation_time and relative):
126
+ if not relative:
129
127
  move_mouse(cx, cy, relative=relative)
128
+ else:
129
+ if not (animation_time and relative):
130
+ targ = tuple(a + b for a, b in zip(get_mouse_xy(), (cx, cy)))
131
+ move_mouse(cx, cy, relative=relative)
132
+ for i in range(limit):
133
+ cur_pos = get_mouse_xy()
134
+ if cur_pos != targ:
135
+ move_mouse(max(-1, min(1, (targ[0]-cur_pos[0]))), max(-1, min(1, (targ[1]-cur_pos[1]))), relative=relative)
136
+ else:
137
+ break
130
138
 
131
139
  if pre_click_duration:
132
140
  if pre_click_wiggle:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: zhmiscellany
3
- Version: 5.7.3
3
+ Version: 5.7.5
4
4
  Summary: A collection of useful/interesting python libraries made by zh.
5
5
  Home-page: https://discord.gg/ThBBAuueVJ
6
6
  Author: zh
@@ -12,7 +12,7 @@ zhmiscellany/fileio.py,sha256=KmRnWWZJWBc5Or3_mKcRY2ehE_Fuk870iS-imtyERyg,18169
12
12
  zhmiscellany/gui.py,sha256=VgT5j5UIr-wWyL2P1qCHSNL7RrvZWDlm0TX00JGWmKo,7404
13
13
  zhmiscellany/image.py,sha256=qUjxiYpc2VVZp2vwr1vN36O2PVQ7YlMKzhegQ1u4c0M,8198
14
14
  zhmiscellany/list.py,sha256=S8Z85bLJEP9lk2JkGpzUcG6kpRB7a-NWDIHMPiF5bKo,1473
15
- zhmiscellany/macro.py,sha256=a1m4G8OFUM1EKsjzPpcZIPH3ldTq5_UiTHJ9KGl_y7o,16354
15
+ zhmiscellany/macro.py,sha256=cerHp2YZGGDr-d7r__PV346TNOiW_GY9NecDwx678Pw,16857
16
16
  zhmiscellany/math.py,sha256=btOQTe_GvqP0A7Zz84tmN_c8j1NGe_mKnhmAt40lhLU,2482
17
17
  zhmiscellany/misc.py,sha256=BsTbRWlXI5LZBG7Bl2MgLzHESyCMJnr_KNZAf2wY_H4,29689
18
18
  zhmiscellany/netio.py,sha256=GTamo5cJn4P6u8V_kgZ9kL8qeMUE7OQAmYkmj9Sp_GA,2236
@@ -21,7 +21,7 @@ zhmiscellany/pipes.py,sha256=PxO4aykFzC60xbTQuc66KzZYIxiW0KPebXZbncD2HcU,3795
21
21
  zhmiscellany/processing.py,sha256=srwlV8FZ--svF5e6rZZxhIs_6ZjOAwq2OcQEf6T2Le8,10410
22
22
  zhmiscellany/rust.py,sha256=znN6DYNoa_p-braTuDZKvUnXX8reWLFu_dG4fv2vLR0,442
23
23
  zhmiscellany/string.py,sha256=xyqE6V5YF2nieZDcg5ZrXTIrH2D9oDRbZ5vQGz8rPys,4787
24
- zhmiscellany-5.7.3.dist-info/METADATA,sha256=ybQ7Ft13Ptnf9zEGozMOwP3sdgNkOFNoL-dAkExe60I,42153
25
- zhmiscellany-5.7.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
26
- zhmiscellany-5.7.3.dist-info/top_level.txt,sha256=ioDtsrevCI52rTxZntMPljRIBsZs73tD0hI00HektiE,13
27
- zhmiscellany-5.7.3.dist-info/RECORD,,
24
+ zhmiscellany-5.7.5.dist-info/METADATA,sha256=K4pzBjf_dXgSDqsVkY-2bftAlkf2WtEjwKyvq4pM7ss,42153
25
+ zhmiscellany-5.7.5.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
26
+ zhmiscellany-5.7.5.dist-info/top_level.txt,sha256=ioDtsrevCI52rTxZntMPljRIBsZs73tD0hI00HektiE,13
27
+ zhmiscellany-5.7.5.dist-info/RECORD,,