zhmiscellany 6.0.2__py3-none-any.whl → 6.0.4__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/_misc_supportfuncs.py +10 -3
- zhmiscellany/macro.py +5 -5
- {zhmiscellany-6.0.2.dist-info → zhmiscellany-6.0.4.dist-info}/METADATA +1 -1
- {zhmiscellany-6.0.2.dist-info → zhmiscellany-6.0.4.dist-info}/RECORD +6 -6
- {zhmiscellany-6.0.2.dist-info → zhmiscellany-6.0.4.dist-info}/WHEEL +0 -0
- {zhmiscellany-6.0.2.dist-info → zhmiscellany-6.0.4.dist-info}/top_level.txt +0 -0
|
@@ -173,9 +173,16 @@ def calibrate():
|
|
|
173
173
|
# calibrate relative movement, required because windows is weird
|
|
174
174
|
original_mouse_point = get_mouse_xy()
|
|
175
175
|
calibration_distance = 128
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
176
|
+
moved_pos = (0, 0)
|
|
177
|
+
lim = 64
|
|
178
|
+
i = 0
|
|
179
|
+
while ((not moved_pos[0]) or (not moved_pos[1])) and i < lim:
|
|
180
|
+
i += 1
|
|
181
|
+
move_mouse(0,0)
|
|
182
|
+
move_mouse(calibration_distance, calibration_distance, relative=True)
|
|
183
|
+
moved_pos = get_mouse_xy()
|
|
184
|
+
if not i < lim:
|
|
185
|
+
raise Exception('Relative mouse movement could not be calibrated, maybe you were tabbed into an application that was controlling your mouse?')
|
|
179
186
|
calibration_multiplier_x = calibration_distance/moved_pos[0]
|
|
180
187
|
calibration_multiplier_y = calibration_distance/moved_pos[1]
|
|
181
188
|
calibrated = True
|
zhmiscellany/macro.py
CHANGED
|
@@ -28,12 +28,12 @@ def click_pixel(x=None, y=None, click_duration=None, right_click=False, middle_c
|
|
|
28
28
|
y = x[1]
|
|
29
29
|
x = x[0]
|
|
30
30
|
|
|
31
|
-
def stochastic_round(
|
|
32
|
-
negative =
|
|
31
|
+
def stochastic_round(val):
|
|
32
|
+
negative = val < 0
|
|
33
33
|
if negative:
|
|
34
|
-
|
|
35
|
-
floor = int(
|
|
36
|
-
out = floor + (random.random() < (
|
|
34
|
+
val = val * -1
|
|
35
|
+
floor = int(val)
|
|
36
|
+
out = floor + (random.random() < (val - floor))
|
|
37
37
|
if negative:
|
|
38
38
|
out = out * -1
|
|
39
39
|
return out
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
zhmiscellany/__init__.py,sha256=Oh3gAJRWq2aUEgkolmQyiZOQ3iey5OC4NA2XaTHuVv4,1139
|
|
2
2
|
zhmiscellany/_discord_supportfuncs.py,sha256=RotSpurqFtL5q6v_ST1e2Y_1qJMaHp1CDsF5i-gR4ec,6524
|
|
3
3
|
zhmiscellany/_fileio_supportfuncs.py,sha256=OIboEBVahqbpG1wbtrhAjoFV-oPylFVmOENOByawaX0,365
|
|
4
|
-
zhmiscellany/_misc_supportfuncs.py,sha256=
|
|
4
|
+
zhmiscellany/_misc_supportfuncs.py,sha256=9CXl0PuD7qTBsvLeXBS0YmOzWfjyApv7ajCzxZcRLvw,7320
|
|
5
5
|
zhmiscellany/_processing_supportfuncs.py,sha256=aZKWIfJW_lVaQs_EyGGBhmoMc6btA38X2hY6A3kTxN8,10341
|
|
6
6
|
zhmiscellany/_py_resources.py,sha256=HqJs5aRLymLZ2J5Io8g6bY58pGWhN9b8vCktC2DW4KQ,229009
|
|
7
7
|
zhmiscellany/_resource_files_lookup.py,sha256=hsgPW0dngokgqWrAVAv5rUo-eobzJPjvWHt4xrOG5l0,856
|
|
@@ -12,7 +12,7 @@ zhmiscellany/fileio.py,sha256=KmRnWWZJWBc5Or3_mKcRY2ehE_Fuk870iS-imtyERyg,18169
|
|
|
12
12
|
zhmiscellany/gui.py,sha256=w1b63jt4qtnnGLImhRXJA5xkjGsKNIT65z0CmwCJgtQ,8939
|
|
13
13
|
zhmiscellany/image.py,sha256=qUjxiYpc2VVZp2vwr1vN36O2PVQ7YlMKzhegQ1u4c0M,8198
|
|
14
14
|
zhmiscellany/list.py,sha256=S8Z85bLJEP9lk2JkGpzUcG6kpRB7a-NWDIHMPiF5bKo,1473
|
|
15
|
-
zhmiscellany/macro.py,sha256=
|
|
15
|
+
zhmiscellany/macro.py,sha256=LR9f6Kb9slNXf1QCMjqEdePvqFr4jmIv2K7NuPWloYc,26661
|
|
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=sDKIbzG9TNFyT6yJ4TJL59taG-59_v3CBLekVSLrwgE,10899
|
|
22
22
|
zhmiscellany/rust.py,sha256=znN6DYNoa_p-braTuDZKvUnXX8reWLFu_dG4fv2vLR0,442
|
|
23
23
|
zhmiscellany/string.py,sha256=xyqE6V5YF2nieZDcg5ZrXTIrH2D9oDRbZ5vQGz8rPys,4787
|
|
24
|
-
zhmiscellany-6.0.
|
|
25
|
-
zhmiscellany-6.0.
|
|
26
|
-
zhmiscellany-6.0.
|
|
27
|
-
zhmiscellany-6.0.
|
|
24
|
+
zhmiscellany-6.0.4.dist-info/METADATA,sha256=ZawDFLMyG9RJPCCdAb8IScFp1IqlTx8IwtyvzSrXAzU,43460
|
|
25
|
+
zhmiscellany-6.0.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
26
|
+
zhmiscellany-6.0.4.dist-info/top_level.txt,sha256=ioDtsrevCI52rTxZntMPljRIBsZs73tD0hI00HektiE,13
|
|
27
|
+
zhmiscellany-6.0.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|