forked from nortikin/sverchok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.py
359 lines (279 loc) · 13 KB
/
settings.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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
import os
import bpy
from bpy.types import AddonPreferences
from bpy.props import BoolProperty, FloatVectorProperty, EnumProperty, IntProperty, FloatProperty, StringProperty
from sverchok import data_structure
from sverchok.core import handlers
from sverchok.core import update_system
from sverchok.utils import sv_panels_tools, logging
from sverchok.ui import color_def
class SverchokPreferences(AddonPreferences):
bl_idname = __package__
def update_debug_mode(self, context):
data_structure.DEBUG_MODE = self.show_debug
def update_heat_map(self, context):
data_structure.heat_map_state(self.heat_map)
def set_frame_change(self, context):
handlers.set_frame_change(self.frame_change_mode)
def update_theme(self, context):
color_def.rebuild_color_cache()
if self.auto_apply_theme:
color_def.apply_theme()
tab_modes = [(k, k, '', i) for i, k in enumerate(["General", "Node Defaults", "Theme"])]
selected_tab = bpy.props.EnumProperty(
items=tab_modes,
description="pick viewing mode",
default="General"
)
# debugish...
show_debug = BoolProperty(
name="Print update timings",
description="Print update timings in console",
default=False, subtype='NONE',
update=update_debug_mode)
no_data_color = FloatVectorProperty(
name="No data", description='When a node can not get data',
size=3, min=0.0, max=1.0,
default=(1, 0.3, 0), subtype='COLOR',
update=update_system.update_error_colors)
exception_color = FloatVectorProperty(
name="Error", description='When node has an exception',
size=3, min=0.0, max=1.0,
default=(0.8, 0.0, 0), subtype='COLOR',
update=update_system.update_error_colors)
# heat map settings
heat_map = BoolProperty(
name="Heat map",
description="Color nodes according to time",
default=False, subtype='NONE',
update=update_heat_map)
heat_map_hot = FloatVectorProperty(
name="Heat map hot", description='',
size=3, min=0.0, max=1.0,
default=(.8, 0, 0), subtype='COLOR')
heat_map_cold = FloatVectorProperty(
name="Heat map cold", description='',
size=3, min=0.0, max=1.0,
default=(1, 1, 1), subtype='COLOR')
# Profiling settings
profiling_sections = [
("NONE", "Disable", "Disable profiling", 0),
("MANUAL", "Marked methods only", "Profile only methods that are marked with @profile decorator", 1),
("UPDATE", "Node tree update", "Profile whole node tree update process", 2)
]
profile_mode = EnumProperty(name = "Profiling mode",
items = profiling_sections,
default = "NONE",
description = "Performance profiling mode")
developer_mode = BoolProperty(name = "Developer mode",
description = "Show some additional panels or features useful for Sverchok developers only",
default = False)
# theme settings
sv_theme = EnumProperty(
items=color_def.themes,
name="Theme preset",
description="Select a theme preset",
update=color_def.color_callback,
default="default_theme")
auto_apply_theme = BoolProperty(
name="Apply theme", description="Apply theme automaticlly",
default=False)
apply_theme_on_open = BoolProperty(
name="Apply theme", description="Apply theme automaticlly",
default=False)
color_viz = FloatVectorProperty(
name="Visualization", description='',
size=3, min=0.0, max=1.0,
default=(1, 0.3, 0), subtype='COLOR',
update=update_theme)
color_tex = FloatVectorProperty(
name="Text", description='',
size=3, min=0.0, max=1.0,
default=(0.5, 0.5, 1), subtype='COLOR',
update=update_theme)
color_sce = FloatVectorProperty(
name="Scene", description='',
size=3, min=0.0, max=1.0,
default=(0, 0.5, 0.2), subtype='COLOR',
update=update_theme)
color_lay = FloatVectorProperty(
name="Layout", description='',
size=3, min=0.0, max=1.0,
default=(0.674, 0.242, 0.363), subtype='COLOR',
update=update_theme)
color_gen = FloatVectorProperty(
name="Generator", description='',
size=3, min=0.0, max=1.0,
default=(0, 0.5, 0.5), subtype='COLOR',
update=update_theme)
# frame change
frame_change_modes = [
("PRE", "Pre", "Update Sverchok before frame change", 0),
("POST", "Post", "Update Sverchok after frame change", 1),
("NONE", "None", "Sverchok doesn't update on frame change", 2)
]
frame_change_mode = EnumProperty(
items=frame_change_modes,
name="Frame change",
description="Select frame change handler",
default="POST",
update=set_frame_change)
# ctrl+space settings
show_icons = BoolProperty(
name="Show icons in ctrl+space menu",
default=False,
description="Use icons in ctrl+space menu")
over_sized_buttons = BoolProperty(
default=False, name="Big buttons", description="Very big buttons")
enable_live_objin = BoolProperty(
description="Objects in edit mode will be updated in object-in Node")
render_scale = FloatProperty(
default=1.0, min=0.01, step=0.01, description='default render scale')
render_location_xy_multiplier = FloatProperty(
default=1.0, min=0.01, step=0.01, description='default render location xy multiplier')
stethoscope_view_scale = FloatProperty(
default=1.0, min=0.01, step=0.01, description='default stethoscope scale')
index_viewer_scale = FloatProperty(
default=1.0, min=0.01, step=0.01, description='default index viewer scale')
datafiles = os.path.join(bpy.utils.user_resource('DATAFILES', path='sverchok', create=True))
defaults_location = StringProperty(default=datafiles, description='usually ..data_files\\sverchok\\defaults\\nodes.json')
external_editor = StringProperty(description='which external app to invoke to view sources')
real_sverchok_path = StringProperty(description='use with symlinked to get correct src->dst')
# Logging settings
def update_log_level(self, context):
logging.info("Setting log level to %s", self.log_level)
logging.setLevel(self.log_level)
log_levels = [
("DEBUG", "Debug", "Debug output", 0),
("INFO", "Information", "Informational output", 1),
("WARNING", "Warnings", "Show only warnings and errors", 2),
("ERROR", "Errors", "Show errors only", 3)
]
log_level = EnumProperty(name = "Logging level",
description = "Minimum events severity level to output. All more severe messages will be logged as well.",
items = log_levels,
update = update_log_level,
default = "INFO")
log_to_buffer = BoolProperty(name = "Log to text buffer",
description = "Enable log output to internal Blender's text buffer",
default = True)
log_to_buffer_clean = BoolProperty(name = "Clear buffer at startup",
description = "Clear text buffer at each Blender startup",
default = False)
log_to_file = BoolProperty(name = "Log to file",
description = "Enable log output to external file",
default = False)
log_to_console = BoolProperty(name = "Log to console",
description = "Enable log output to console / terminal / standard output.",
default = True)
log_buffer_name = StringProperty(name = "Buffer name", default = "sverchok.log")
log_file_name = StringProperty(name = "File path", default = os.path.join(datafiles, "sverchok.log"))
# updating sverchok
dload_archive_name = StringProperty(name="archive name", default="master")
dload_archive_path = StringProperty(name="archive path", default="https://github.com/nortikin/sverchok/archive/")
def draw(self, context):
layout = self.layout
layout.row().prop(self, 'selected_tab', expand=True)
if self.selected_tab == "General":
col = layout.row().column()
col_split = col.split(0.5)
col1 = col_split.column()
col1.label(text="UI:")
col1.prop(self, "show_icons")
col1.prop(self, "over_sized_buttons")
col1.prop(self, "enable_live_objin", text='Enable Live Object-In')
col1.prop(self, "external_editor", text="Ext Editor")
col1.prop(self, "real_sverchok_path", text="Src Directory")
col2 = col_split.split().column()
col2.label(text="Frame change handler:")
col2.row().prop(self, "frame_change_mode", expand=True)
col2.separator()
col2box = col2.box()
col2box.label(text="Debug:")
col2box.prop(self, "profile_mode")
col2box.prop(self, "show_debug")
col2box.prop(self, "heat_map")
col2box.prop(self, "developer_mode")
log_box = col2.box()
log_box.label(text="Logging:")
log_box.prop(self, "log_level")
buff_row = log_box.row()
buff_row.prop(self, "log_to_buffer")
if self.log_to_buffer:
buff_row.prop(self, "log_buffer_name")
log_box.prop(self, "log_to_buffer_clean")
file_row = log_box.row()
file_row.prop(self, "log_to_file")
if self.log_to_file:
file_row.prop(self, "log_file_name")
log_box.prop(self, "log_to_console")
if self.selected_tab == "Node Defaults":
row = layout.row()
col = row.column(align=True)
row_sub1 = col.row().split(0.5)
box_sub1 = row_sub1.box()
box_sub1_col = box_sub1.column(align=True)
box_sub1_col.label('Render Scale & Location')
box_sub1_col.prop(self, 'render_location_xy_multiplier', text='xy multiplier')
box_sub1_col.prop(self, 'render_scale', text='scale')
box_sub1_col.label('Stethoscope MK2 settings')
box_sub1_col.prop(self, 'stethoscope_view_scale', text='scale')
box_sub1_col.label('Index Viewer settings')
box_sub1_col.prop(self, 'index_viewer_scale', text='scale')
col3 = row_sub1.split().column()
col3.label('Location of custom defaults')
col3.prop(self, 'defaults_location', text='')
if self.selected_tab == "Theme":
row = layout.row()
col = row.column(align=True)
split = col.row().split(0.66)
split2 = col.row().split(0.66)
left_split = split.row()
right_split = split.row()
split_viz_colors = left_split.column().split(percentage=0.5, align=True)
if True:
col1 = split_viz_colors.column()
for name in ['color_viz', 'color_tex', 'color_sce']:
r = col1.row()
r.prop(self, name)
col2 = split_viz_colors.column()
for name in ['color_lay', 'color_gen']:
r = col2.row()
r.prop(self, name)
split_extra_colors = split2.column().split()
col_x1 = split_extra_colors.column()
col_x1.label("Error colors: ( error / no data )")
row_x1 = col_x1.row()
row_x1.prop(self, "exception_color", text='')
row_x1.prop(self, "no_data_color", text='')
col_x2 = split_extra_colors.split().column()
col_x2.label("Heat map colors: ( hot / cold )")
row_x2 = col_x2.row()
row_x2.active = self.heat_map
row_x2.prop(self, "heat_map_hot", text='')
row_x2.prop(self, "heat_map_cold", text='')
col3 = right_split.column()
col3.label('Theme:')
col3.prop(self, 'sv_theme', text='')
col3.separator()
col3.prop(self, 'auto_apply_theme', text="Auto apply theme changes")
col3.prop(self, 'apply_theme_on_open', text="Apply theme when opening file")
col3.operator('node.sverchok_apply_theme', text="Apply theme to layouts")
# FOOTER
row = layout.row()
col = row.column(align=True)
col.label(text="Links:")
row1 = col.row(align=True)
row1.scale_y = 2.0
row1.operator('wm.url_open', text='Sverchok home page').url = 'http://nikitron.cc.ua/blend_scripts.html'
row1.operator('wm.url_open', text='Documentation').url = 'http://nikitron.cc.ua/sverch/html/main.html'
if context.scene.sv_new_version:
row1.operator('node.sverchok_update_addon', text='Upgrade Sverchok addon')
else:
row1.operator('node.sverchok_check_for_upgrades_wsha', text='Check for new version')
def register():
bpy.utils.register_class(SverchokPreferences)
def unregister():
bpy.utils.unregister_class(SverchokPreferences)
if __name__ == '__main__':
register()