-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanels.py
113 lines (84 loc) · 3.2 KB
/
panels.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
# ##### BEGIN GPL LICENSE BLOCK #####
#
# <User Interface and Blender Addon for Pidgeon Render Farm>
# Copyright (C) <2022> <Crafto1337>
#
# 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 3
# 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 #####
import bpy
from bpy.types import (
Panel
)
class SRF_PT_panel(Panel):
bl_label = "Super Render Farm"
bl_idname = "SRF_PT_panel"
bl_space_type = 'PROPERTIES'
bl_region_type = 'WINDOW'
bl_context = "render"
def draw(self, context):
layout = self.layout
scene = context.scene
layout.label(text="Consecutive Frames per Client:")
layout.prop(scene, "batch_size", text="")
if bpy.context.scene.render.image_settings.file_format in ["AVI_JPEG", "AVI_RAW", "FFMPEG"]:
layout.label(text="File Format")
layout.prop(scene, "file_format", text="")
# layout.separator()
# layout.label(text="Video Settings")
# row = layout.row()
# row.prop(scene, "video")
if scene.video or False:
# todo: Delete this prop
# row = layout.row()
# row.prop(scene, "fps")
layout.label(text="Encoding Priority")
row = layout.row()
row.prop(scene, "vrc", text="")
row = layout.row()
row.prop(scene, "vrc_value") # TODO: Proper label
row = layout.row()
row.prop(scene, "resize")
if scene.resize:
grid = layout.grid_flow(columns=1, align=True)
grid.prop(scene, "res_x", text="Resolution X")
grid.prop(scene, "res_y", text="Resolution Y")
layout.separator()
layout.label(text="Other Pidgeon Tools Addons")
row = layout.row()
row.prop(scene, "use_sfr")
# if bpy.app.version >= (3,5):
# row = layout.row()
# row.prop(scene, "use_sid_temporal")
layout.separator()
row = layout.row()
row.prop(scene, "test_render_time")
# # # if not scene.test_render_time:
# # # row = layout.row()
# # # row.prop(scene, "render_time")
# row = layout.row()
# row.prop(scene, "exit_blender", text="Exit Blender while rendering")
row = layout.row()
# , text="Overwrite")
row.operator("superrenderfarm.render", icon="RENDER_RESULT")
classes = (
SRF_PT_panel,
)
def register():
for cls in classes:
bpy.utils.register_class(cls)
def unregister():
for cls in reversed(classes):
bpy.utils.unregister_class(cls)