-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
90 lines (70 loc) · 2.47 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import os
from functools import cache
import bpy
@cache
def get_pref():
return bpy.context.preferences.addons[__package__].preferences
def get_event_key(event: bpy.types.Event):
alt = event.alt
shift = event.shift
ctrl = event.ctrl
not_key = ((not ctrl) and (not alt) and (not shift))
only_ctrl = (ctrl and (not alt) and (not shift))
only_alt = ((not ctrl) and alt and (not shift))
only_shift = ((not ctrl) and (not alt) and shift)
shift_alt = ((not ctrl) and alt and shift)
ctrl_alt = (ctrl and alt and (not shift))
ctrl_shift = (ctrl and (not alt) and shift)
ctrl_shift_alt = (ctrl and alt and shift)
return not_key, only_ctrl, only_alt, only_shift, shift_alt, ctrl_alt, ctrl_shift, ctrl_shift_alt
def tag_redraw():
for area in bpy.context.screen.areas:
area.tag_redraw()
def addon_keys() -> "[str]":
"""获取插件所有id"""
import addon_utils
if bpy.app.version >= (4, 2, 0):
return addon_utils.modules().mapping.keys()
else:
return [addon.__name__ for addon in addon_utils.modules()]
def clear_cache():
get_pref.cache_clear()
def get_addon_user_dirs():
version = bpy.app.version
if version >= (3, 6, 0): # 4.0以上
addon_user_dirs = tuple(
i for i in (
*[os.path.join(pref_p, "addons") for pref_p in bpy.utils.script_paths_pref()],
bpy.utils.user_resource('SCRIPTS', path="addons"),
)
if i
)
elif bpy.app.version >= (2, 94, 0): # 3.0 version
addon_user_dirs = tuple(
i for i in (
os.path.join(bpy.context.preferences.filepaths.script_directory, "addons"),
bpy.utils.user_resource('SCRIPTS', path="addons"),
)
if i
)
else: # 2.93 version
addon_user_dirs = tuple(
i for i in (
os.path.join(bpy.context.preferences.filepaths.script_directory, "addons"),
bpy.utils.user_resource('SCRIPTS', "addons"),
)
if i
)
return addon_user_dirs
class PublicEvent:
not_key: bool
only_ctrl: bool
only_alt: bool
only_shift: bool
shift_alt: bool
ctrl_alt: bool
ctrl_shift: bool
ctrl_shift_alt: bool
def set_event_key(self, event):
self.not_key, self.only_ctrl, self.only_alt, self.only_shift, self.shift_alt, self.ctrl_alt, self.ctrl_shift, self.ctrl_shift_alt = \
get_event_key(event)