-
Notifications
You must be signed in to change notification settings - Fork 98
/
development_class_viewer.py
203 lines (154 loc) · 6.2 KB
/
development_class_viewer.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
bl_info = {
"name": "Class Viewer",
"author": "Mackraken", "batFinger"
"version": (0, 1, 3),
"blender": (2, 80, 0),
"location": "Text Editor > Toolbar, Text Editor > Right Click",
"warning": "",
"description": "List classes and definitions of a text block",
"doc_url": "https://sites.google.com/site/aleonserra/home/scripts/class-viewer",
"tracker_url": "https://developer.blender.org/maniphest/task/edit/form/2/",
"category": "Development"}
import bpy
from bpy.types import (
Operator,
Menu,
)
from bpy.props import IntProperty
# lists all defs, comment or classes
# space = current text editor
# sort = sort result
# tipo = kind of struct to look for
# escape = character right next to the class or def name
# note: GPL license block is skipped from the comment entries now
def getfunc(space, sort, tipo="def ", escape=""):
defs, license_clean, return_lists = [], [], []
if space.type == "TEXT_EDITOR" and space.text is not None:
txt = space.text
line_block_start, line_block_end = None, None
for i, l in enumerate(txt.lines):
try:
line = l.body
except:
line = ""
if tipo == "# ":
linex, line_c = "", ""
if tipo in line:
# find the license block
block_start = line.find("BEGIN GPL LICENSE BLOCK")
if block_start != -1:
line_block_start = i + 1
block_end = line.find("END GPL LICENSE BLOCK")
if block_end != -1:
line_block_end = i + 1
end = line.find(escape)
# use line partition, get the last tuple element as it is the comment
line_c = line.partition("#")[2]
# strip the spaces from the left if any and
# cut the comment at the 60 characters length max
linex = line_c[:60].lstrip() if len(line_c) > 60 else line_c.lstrip()
if end == 0:
func = linex
else:
func = linex.rstrip(escape)
defs.append([func, i + 1])
elif line[0: len(tipo)] == tipo:
end = line.find(escape)
if end == 0:
func = line[len(tipo)::]
else:
func = line[len(tipo):end]
defs.append([func, i + 1])
if line_block_start and line_block_end:
# note : the slice should keep the first line of the license block
license_clean = defs[line_block_start: line_block_end]
return_lists = [line for line in defs if line not in license_clean] if license_clean else defs
if sort:
return_lists.sort()
return return_lists
def draw_menus(layout, space, tipo, escape):
items = getfunc(space, 1, tipo, escape)
if not items:
layout.label(text="Not found", icon="INFO")
return
for it in items:
layout.operator("text.jumptoline", text="{}".format(it[0])).line = it[1]
class BaseCheckPoll():
@classmethod
def poll(cls, context):
if context.area.spaces[0].type != "TEXT_EDITOR":
return False
else:
return context.area.spaces[0].text is not None
class TEXT_OT_Jumptoline(Operator, BaseCheckPoll):
bl_label = "Jump"
bl_idname = "text.jumptoline"
bl_description = "Jump to line containing the text"
__doc__ = "Jump to line containing the passed line integer. Used by the Class Viewer add-on"
line: IntProperty(default=-1)
def execute(self, context):
if self.line == -1:
self.report({'WARNING'}, "No valid line found. Operation Cancelled")
return {'CANCELLED'}
bpy.ops.text.jump(line=self.line)
self.report({'INFO'}, "Jump to line: {}".format(self.line))
return {'FINISHED'}
class CommentsMenu(Menu, BaseCheckPoll):
bl_idname = "OBJECT_MT_select_comments"
bl_label = "Comments"
def draw(self, context):
layout = self.layout
space = context.area.spaces[0]
draw_menus(layout, space, "# ", "\n")
class DefsMenu(Menu, BaseCheckPoll):
bl_idname = "OBJECT_MT_select_defs"
bl_label = "Definitions"
def draw(self, context):
layout = self.layout
space = context.area.spaces[0]
draw_menus(layout, space, "def ", "(")
class ClassesMenu(Menu, BaseCheckPoll):
bl_idname = "OBJECT_MT_select_classes"
bl_label = "Classes"
def draw(self, context):
layout = self.layout
space = context.area.spaces[0]
draw_menus(layout, space, "class ", "(")
def menu_development_class_view(self, context):
self.layout.separator()
self.layout.menu("OBJECT_MT_select_comments", icon='SHORTDISPLAY')
self.layout.menu("OBJECT_MT_select_defs", icon='FILE_TEXT')
self.layout.menu("OBJECT_MT_select_classes", icon='SCRIPTPLUGINS')
classes = (
TEXT_OT_Jumptoline,
ClassesMenu,
DefsMenu,
CommentsMenu,
)
def register():
for cls in classes:
bpy.utils.register_class(cls)
bpy.types.TEXT_MT_context_menu.append(menu_development_class_view)
def unregister():
for cls in classes:
bpy.utils.unregister_class(cls)
bpy.types.TEXT_MT_context_menu.remove(menu_development_class_view)
if __name__ == "__main__":
register()