-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
305 lines (248 loc) · 9.93 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
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
# Copyritht © 2021 - 2022 Marcin Różewski MDSANIMA
"""The Blender add-on estimates and calculate how long your animation will take
to render done based on the rendering time of the only one frame. The add-on is
located in the ``View3D > UI`` area panels and show rendering time statistic.
You will also find here useful rendering statistics as well as automations of
various time-consuming activities and manny more useful features and tools.
"""
bl_info = {
"name": "MDSANIMA RenderTime",
"description": "Estimate how long you animation will take to render done.",
"author": "Marcin Różewski",
"license": "GPL",
"version": (0, 1, 1),
"blender": (3, 1, 2),
"location": "View3D > UI",
"doc_url": "https://github.com/mdsanima-dev/mdsanima-render-time/",
"tracker_url": "https://github.com/mdsanima-dev/mdsanima-render-time/issues/",
"link": "https://dev.mdsanima.com",
"support": "COMMUNITY",
"category": "Render",
}
import os
from datetime import datetime
from datetime import timedelta
import bpy
from bpy.app import handlers
# initail global variable timer
ti_init = None
ti_start = None
ti_complete = None
ti_cancel = None
rt_init_render = None
rt_one_frame = None
rt_info = "[MDSANIMA RT]"
@handlers.persistent
def rt_init(dummy):
global ti_init
ti_init = datetime.now()
print(rt_info, "->", str(ti_init).ljust(26), "=> Render Init")
@handlers.persistent
def rt_start(dummy):
global ti_start
global rt_init_render
ti_start = datetime.now()
rt_init_render = ti_start - ti_init
print(rt_info, "->", str(ti_start).ljust(26), "=> Render Start")
print(rt_info, "->", "RT Initialization =>", rt_init_render)
@handlers.persistent
def rt_complete(dummy):
global ti_complete
global rt_one_frame
ti_complete = datetime.now()
rt_one_frame = ti_complete - ti_start
print(rt_info, "->", str(ti_complete).ljust(26), "=> Render Complete")
print(rt_info, "->", "RT One Frame =>", rt_one_frame)
@handlers.persistent
def rt_cancel(dummy):
global ti_cancel
global rt_one_frame
ti_cancel = datetime.now()
rt_one_frame = ti_cancel - ti_start
print(rt_info, "->", str(ti_cancel).ljust(26), "=> Render Cancel")
print(rt_info, "->", "RT One Frame =>", rt_one_frame)
class MDSANIMA_PT_render_time(bpy.types.Panel):
"""Creates a Panel in the UI 3D View"""
MDSANIMA_version = (
str(bl_info["version"])
.replace("(", "")
.replace(")", "")
.replace(", ", ".")
)
bl_idname = "MDSANIMA_PT_render_time"
bl_label = "MDSANIMA RenderTime v" + MDSANIMA_version
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
bl_category = "MDSANIMA"
def draw(self, context):
# initial variable layout
layout = self.layout
scene = bpy.context.scene
# initial variable get icons from dictionary
pcoll = preview_collections["main"]
icon_mdsanima_def_cyan = pcoll["ic_mds_cya"]
icon_mdsanima_def_red = pcoll["ic_mds_red"]
icon_mdsanima_def_orange = pcoll["ic_mds_ora"]
icon_mdsanima_def_amber = pcoll["ic_mds_amb"]
# initial variable calculation resolution
perc_res_v = 100 / scene.render.resolution_percentage
res_x = scene.render.resolution_x / perc_res_v
res_y = scene.render.resolution_y / perc_res_v
res_val = str(int(res_x)) + " x " + str(int(res_y))
# initial variable calculation all frames
sta_frames = scene.frame_start
end_frames = scene.frame_end
check_frame = 1 if sta_frames == 1 or sta_frames == 0 else 0
all_frames = (end_frames - sta_frames) + check_frame
time_code = bpy.utils.smpte_from_frame(all_frames)
# stats info render properties
row = layout.grid_flow(
row_major=True,
columns=2,
even_columns=True,
even_rows=True,
align=False,
)
row.label(text="Render Engine", icon="DESKTOP")
row.label(text=scene.render.engine)
row.label(text="Device", icon="MEMORY")
row.label(text=scene.cycles.device)
row.label(text="Samples", icon="SHADING_BBOX")
row.label(text=str(scene.cycles.samples))
layout.separator()
# stats info output properties
row = layout.grid_flow(
row_major=True,
columns=2,
even_columns=True,
even_rows=True,
align=False,
)
row.label(text="Resolution", icon="RESTRICT_VIEW_ON")
row.label(text=res_val)
row.label(text="All Frames", icon="RENDER_ANIMATION")
row.label(text=str(all_frames))
row.label(text="Frame Rate", icon="OUTLINER_DATA_CAMERA")
row.label(text=str(scene.render.fps) + " fps")
row.label(text="Duration TC", icon="PREVIEW_RANGE")
row.label(text=time_code)
layout.separator()
# button render
row = layout.row()
row.scale_y = 2.0
row.operator(
"render.render",
text="RENDER",
icon_value=icon_mdsanima_def_cyan.icon_id,
)
# checking draw layout
if rt_init_render == None:
pass
else:
# initial variable calculation render time
ini_frame_rt = rt_init_render
one_frame_rt = rt_one_frame
all_frame_rt = one_frame_rt * all_frames
date_now = datetime.now()
sec_complete = timedelta(seconds=all_frame_rt.total_seconds())
calc_complete = date_now + sec_complete
start_render = date_now.strftime("%Y-%m-%d %H:%M:%S")
complete_render = calc_complete.strftime("%Y-%m-%d %H:%M:%S")
layout.separator()
# stats info render time
row = layout.grid_flow(
row_major=True,
columns=2,
even_columns=True,
even_rows=True,
align=False,
)
row.label(text="RT Initialization", icon="IMAGE_PLANE")
row.label(text=str(ini_frame_rt))
row.label(text="RT One Frame", icon="OUTPUT")
row.label(text=str(one_frame_rt)[:-4])
row.label(text="RT All Frames", icon="FILE_MOVIE")
row.label(text=str(all_frame_rt)[:-4])
row.label(text="Render Start", icon="PLUGIN")
row.label(text=str(start_render))
row.label(text="Render Complete", icon="EXTERNAL_DRIVE")
row.label(text=str(complete_render))
layout.separator()
# button website
row = layout.row(align=True)
row.operator(
"mdsanima.website_issues",
icon_value=icon_mdsanima_def_red.icon_id,
)
row.operator(
"mdsanima.website_mdsanima",
icon_value=icon_mdsanima_def_orange.icon_id,
)
row.operator(
"mdsanima.website_blog",
icon_value=icon_mdsanima_def_amber.icon_id,
)
class MDSANIMA_OT_website_issues(bpy.types.Operator):
bl_idname = "mdsanima.website_issues"
bl_label = "GITHUB"
bl_description = "Open a GitHub Issues website in the web browser"
def execute(self, context):
url = "https://github.com/mdsanima-dev/mdsanima-render-time/issues"
bpy.ops.wm.url_open("INVOKE_DEFAULT", url=url)
return {"FINISHED"}
class MDSANIMA_OT_website_mdsanima(bpy.types.Operator):
bl_idname = "mdsanima.website_mdsanima"
bl_label = "MDSANIMA"
bl_description = "Open a MDSANIMA website in the web browser"
def execute(self, context):
url = "https://dev.mdsanima.com"
bpy.ops.wm.url_open("INVOKE_DEFAULT", url=url)
return {"FINISHED"}
class MDSANIMA_OT_website_blog(bpy.types.Operator):
bl_idname = "mdsanima.website_blog"
bl_label = "BLOG"
bl_description = "Open a Blender Visual Blog website in the web browser"
def execute(self, context):
url = "https://blendervisual.blogspot.com"
bpy.ops.wm.url_open("INVOKE_DEFAULT", url=url)
return {"FINISHED"}
# initial dictionary for custom icons data
preview_collections = {}
def register():
# initial variable icons name
ic_mds_cya = "logo_mdsanima_default_01-cyan_1x.png"
ic_mds_red = "logo_mdsanima_default_10-red_1x.png"
ic_mds_ora = "logo_mdsanima_default_11-orange_1x.png"
ic_mds_amb = "logo_mdsanima_default_12-amber_1x.png"
# store custom icons data
pcoll = bpy.utils.previews.new()
# path to the folder where the icon is
mds_ic_dir = os.path.join(os.path.dirname(__file__), "icons")
# load a preview thumbnail of a file and store in the previews collection
pcoll.load("ic_mds_cya", os.path.join(mds_ic_dir, ic_mds_cya), "IMAGE")
pcoll.load("ic_mds_red", os.path.join(mds_ic_dir, ic_mds_red), "IMAGE")
pcoll.load("ic_mds_ora", os.path.join(mds_ic_dir, ic_mds_ora), "IMAGE")
pcoll.load("ic_mds_amb", os.path.join(mds_ic_dir, ic_mds_amb), "IMAGE")
preview_collections["main"] = pcoll
# append printing message render time stats timer
handlers.render_init.append(rt_init)
handlers.render_pre.append(rt_start)
handlers.render_complete.append(rt_complete)
handlers.render_cancel.append(rt_cancel)
# register class panel render time
bpy.utils.register_class(MDSANIMA_PT_render_time)
bpy.utils.register_class(MDSANIMA_OT_website_issues)
bpy.utils.register_class(MDSANIMA_OT_website_mdsanima)
bpy.utils.register_class(MDSANIMA_OT_website_blog)
def unregister():
# clear all icons preview data
for pcoll in preview_collections.values():
bpy.utils.previews.remove(pcoll)
preview_collections.clear()
# unregister class panel render time
bpy.utils.unregister_class(MDSANIMA_PT_render_time)
bpy.utils.unregister_class(MDSANIMA_OT_website_issues)
bpy.utils.unregister_class(MDSANIMA_OT_website_mdsanima)
bpy.utils.unregister_class(MDSANIMA_OT_website_blog)
if __name__ == "__main__":
register()