forked from prman-pixar/RenderManForBlender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
136 lines (116 loc) · 4.28 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
# ##### BEGIN MIT LICENSE BLOCK #####
#
# Copyright (c) 2015 - 2017 Pixar
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
#
# ##### END MIT LICENSE BLOCK #####
import bpy
import sys
bl_info = {
"name": "RenderMan For Blender",
"author": "Pixar",
"version": (22, 5, 0),
"blender": (2, 78, 0),
"location": "Info Header, render engine menu",
"description": "RenderMan 22.5 integration",
"warning": "",
"category": "Render"}
class PRManRender(bpy.types.RenderEngine):
bl_idname = 'PRMAN_RENDER'
bl_label = "RenderMan Render"
bl_use_preview = True
bl_use_save_buffers = True
bl_use_shading_nodes = True
bl_use_shading_nodes_custom = False
def __init__(self):
self.render_pass = None
def __del__(self):
if hasattr(self, "render_pass"):
if self.render_pass is not None:
engine.free(self)
# main scene render
def update(self, data, scene):
if(engine.ipr):
return
if self.is_preview:
if not self.render_pass:
engine.create(self, data, scene)
else:
if not self.render_pass:
engine.create(self, data, scene)
else:
engine.reset(self, data, scene)
engine.update(self, data, scene)
def render(self, scene):
if self.render_pass is not None:
engine.render(self)
# these handlers are for marking files as dirty for ribgen
def add_handlers(scene):
if engine.update_timestamp not in bpy.app.handlers.scene_update_post:
bpy.app.handlers.scene_update_post.append(engine.update_timestamp)
if properties.initial_groups not in bpy.app.handlers.scene_update_post:
bpy.app.handlers.load_post.append(properties.initial_groups)
def remove_handlers():
if properties.initial_groups in bpy.app.handlers.scene_update_post:
bpy.app.handlers.scene_update_post.remove(properties.initial_groups)
if engine.update_timestamp in bpy.app.handlers.scene_update_post:
bpy.app.handlers.scene_update_post.remove(engine.update_timestamp)
def load_addon():
# if rmantree is ok load the stuff
from .util import guess_rmantree, throw_error
from . import preferences
if guess_rmantree():
# else display an error, tell user to correct
# and don't load anything else
from . import ui
from . import properties
from . import operators
from . import nodes
# need this now rather than at beginning to make
# sure preferences are loaded
from . import engine
properties.register()
operators.register()
ui.register()
add_handlers(None)
nodes.register()
else:
# display loading error
throw_error(
"Error loading addon. Correct RMANTREE setting in addon preferences.")
def register():
from . import preferences
preferences.register()
load_addon()
from . import presets
presets.register()
bpy.utils.register_module(__name__)
def unregister():
from . import preferences
remove_handlers()
properties.unregister()
operators.unregister()
ui.unregister()
nodes.unregister()
preferences.unregister()
from . import presets
presets.unregister()
bpy.utils.unregister_module(__name__)