-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path__init__.py
160 lines (116 loc) · 3.84 KB
/
__init__.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# -*- coding: utf-8 -*-
""" Initialize rush plugin commands
"""
from __future__ import print_function
import inspect
import json
import sys
import imp
import os
from maya import cmds
def __loadConfig():
# type: () -> list
""" Load config file
Return:
config(list): List of path module paths
"""
configFilePath = os.path.normpath(os.path.join(
cmds.internalVar(userScriptDir=True), 'rush.json'))
defaultModulePath = os.path.normpath(os.path.join(
cmds.internalVar(userScriptDir=True), 'rush', 'module'))
config = [defaultModulePath]
# Use only default module path if config file does not exist
if not os.path.exists(configFilePath):
print("Additional config file not found: %s" % configFilePath)
return config
# Open and load config file in use home dir and append it to the
# config list
try:
fileData = open(configFilePath, 'r')
extraConfig = json.load(fileData)
additionalPaths = extraConfig["path"]
fileData.close()
except IOError:
print("Failed to load config file")
config.extend(additionalPaths)
return config
def __getModulePath(moduleDirPath):
# type: (str) -> list
""" Create and return a list of module paths
Args:
moduleDirPath (str): directory path to search modules
Return:
mods (list): List of module paths
"""
if not os.path.exists(moduleDirPath):
return []
# Get all module files in the directories
module_paths = []
for root, _, files in os.walk(moduleDirPath):
for f in files:
if f.endswith(".py"):
path = os.path.join(root, f)
module_paths.append(path)
return module_paths
def __loadModule(modulePath):
# type: (str) -> module
""" Load module
Args:
modulePath (str): Full path to the python module
Return:
mod (module object): command module
None: if path doesn't exist
"""
# Create module names for import, for exapmle ...
#
# "rush/template"
# "animation/animate"
# "common/create"
# "common/display"
normPath = os.path.normpath(modulePath)
if sys.platform == "win32":
name = os.path.splitext(normPath)[0].split("\\")
else:
name = os.path.splitext(normPath)[0].split("/")
name = "/".join(name[-2:])
# If arnold is not loaded or installed, ignore modules for arnold
if name.startswith("Arnold"):
hasArnold = cmds.pluginInfo("mtoa", q=True, loaded=True)
if not hasArnold:
return None
try:
mod = imp.load_source(name, modulePath)
return mod
except Exception:
print("Failed to load module : %s" % modulePath)
return None
class TmpCls(object):
commandDict = {}
MODULES = []
for module_dir in __loadConfig():
normpath = os.path.normpath(module_dir)
if os.path.exists(normpath):
module_paths = __getModulePath(module_dir)
for i in module_paths:
MODULES.append(i)
for module_name in MODULES:
m = __loadModule(module_name)
try:
tempDict = {}
for cmd in m.commandDict:
displayName = cmd[:1].capitalize() + cmd[1:]
command_data = {}
command_data[displayName] = {}
command_data[displayName]['icon'] = m.commandDict[cmd]
command_data[displayName]['path'] = module_name
command_data[displayName]['command'] = cmd
command_data[displayName]['module'] = m.__name__
tempDict.update(command_data)
TmpCls.commandDict.update(tempDict)
except AttributeError:
pass
functions = inspect.getmembers(m, inspect.isfunction)
for funcTuple in functions:
funcName = funcTuple[0]
funcObj = funcTuple[1]
setattr(TmpCls, funcName, staticmethod(funcObj))