Compare commits
32 Commits
version-1.
...
version-1.
Author | SHA1 | Date | |
---|---|---|---|
02b694f5d4 | |||
663ebae572 | |||
cb5a116dff | |||
5821611d89 | |||
8bd1faa575 | |||
8899bff5e4 | |||
4fd4ad7448 | |||
4f32b49ad3 | |||
1f13b4d249 | |||
ef57dba5d3 | |||
419249ee19 | |||
113eb8f7ab | |||
85f911cb59 | |||
564c2589b1 | |||
80155ed4f4 | |||
d8c5c4eecd | |||
3972ce4543 | |||
d75a055149 | |||
649542daad | |||
1d99751d20 | |||
69028e0cfd | |||
dc7ad296bf | |||
3f2479067c | |||
6fefe4ffd8 | |||
62c1c966f6 | |||
57aadc1817 | |||
7204d4a24c | |||
641b51496a | |||
0562d57513 | |||
ac19e48895 | |||
73d96e5c89 | |||
4bfdac223a |
38
CHANGELOG.md
38
CHANGELOG.md
@@ -1,5 +1,43 @@
|
|||||||
# Blender Cloud changelog
|
# Blender Cloud changelog
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.10.0 (2019-01-02)
|
||||||
|
|
||||||
|
- Bundles Blender-Asset-Tracer 0.8.
|
||||||
|
- Fix crashing Blender when running in background mode (e.g. without GUI).
|
||||||
|
- Flamenco: Include extra job parameters to allow for encoding a video at the end of a render
|
||||||
|
job that produced an image sequence.
|
||||||
|
- Flamenco: Compress all blend files, and not just the one we save from Blender.
|
||||||
|
- Flamenco: Store more info in the `jobinfo.json` file. This is mostly useful for debugging issues
|
||||||
|
on the render farm, as now things like the exclusion filter and Manager settings are logged too.
|
||||||
|
- Flamenco: Allow BAT-packing of only those assets that are referred to by relative path (e.g.
|
||||||
|
a path starting with `//`). Assets with an absolute path are ignored, and assumed to be reachable
|
||||||
|
at the same path by the Workers.
|
||||||
|
- Flamenco: Added 'blender-video-chunks' job type, meant for rendering the edit of a film from the
|
||||||
|
VSE. This job type requires that the file is configured for rendering to Matroska video
|
||||||
|
files.
|
||||||
|
|
||||||
|
Audio is only extracted when there is an audio codec configured. This is a bit arbitrary, but it's
|
||||||
|
at least a way to tell whether the artist is considering that there is audio of any relevance in
|
||||||
|
the current blend file.
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.9.4 (2018-11-01)
|
||||||
|
|
||||||
|
- Fixed Python 3.6 and Blender 2.79b incompatibilities accidentally introduced in 1.9.3.
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.9.3 (2018-10-30)
|
||||||
|
|
||||||
|
- Fix drawing of Attract strips in the VSE on Blender 2.8.
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.9.2 (2018-09-17)
|
||||||
|
|
||||||
|
- No changes, just a different filename to force a refresh on our
|
||||||
|
hosting platform.
|
||||||
|
|
||||||
|
|
||||||
## Version 1.9.1 (2018-09-17)
|
## Version 1.9.1 (2018-09-17)
|
||||||
|
|
||||||
- Fix issue with Python 3.7, which is used by current daily builds of Blender.
|
- Fix issue with Python 3.7, which is used by current daily builds of Blender.
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
bl_info = {
|
bl_info = {
|
||||||
'name': 'Blender Cloud',
|
'name': 'Blender Cloud',
|
||||||
"author": "Sybren A. Stüvel, Francesco Siddi, Inês Almeida, Antony Riakiotakis",
|
"author": "Sybren A. Stüvel, Francesco Siddi, Inês Almeida, Antony Riakiotakis",
|
||||||
'version': (1, 9, 1),
|
'version': (1, 10, 0),
|
||||||
'blender': (2, 80, 0),
|
'blender': (2, 80, 0),
|
||||||
'location': 'Addon Preferences panel, and Ctrl+Shift+Alt+A anywhere for texture browser',
|
'location': 'Addon Preferences panel, and Ctrl+Shift+Alt+A anywhere for texture browser',
|
||||||
'description': 'Texture library browser and Blender Sync. Requires the Blender ID addon '
|
'description': 'Texture library browser and Blender Sync. Requires the Blender ID addon '
|
||||||
|
@@ -47,6 +47,11 @@ if "bpy" in locals():
|
|||||||
pillar = importlib.reload(pillar)
|
pillar = importlib.reload(pillar)
|
||||||
async_loop = importlib.reload(async_loop)
|
async_loop = importlib.reload(async_loop)
|
||||||
blender = importlib.reload(blender)
|
blender = importlib.reload(blender)
|
||||||
|
else:
|
||||||
|
import bpy
|
||||||
|
|
||||||
|
if bpy.app.version < (2, 80):
|
||||||
|
from . import draw_27 as draw
|
||||||
else:
|
else:
|
||||||
from . import draw
|
from . import draw
|
||||||
from .. import pillar, async_loop, blender
|
from .. import pillar, async_loop, blender
|
||||||
@@ -174,10 +179,11 @@ class AttractPollMixin:
|
|||||||
return attract_is_active
|
return attract_is_active
|
||||||
|
|
||||||
|
|
||||||
class AttractToolsPanel(AttractPollMixin, Panel):
|
class ATTRACT_PT_tools(AttractPollMixin, Panel):
|
||||||
bl_label = 'Attract'
|
bl_label = 'Attract'
|
||||||
bl_space_type = 'SEQUENCE_EDITOR'
|
bl_space_type = 'SEQUENCE_EDITOR'
|
||||||
bl_region_type = 'UI'
|
bl_region_type = 'UI'
|
||||||
|
bl_category = 'Strip'
|
||||||
|
|
||||||
def draw_header(self, context):
|
def draw_header(self, context):
|
||||||
strip = active_strip(context)
|
strip = active_strip(context)
|
||||||
@@ -189,28 +195,42 @@ class AttractToolsPanel(AttractPollMixin, Panel):
|
|||||||
layout = self.layout
|
layout = self.layout
|
||||||
strip_types = {'MOVIE', 'IMAGE', 'META', 'COLOR'}
|
strip_types = {'MOVIE', 'IMAGE', 'META', 'COLOR'}
|
||||||
|
|
||||||
selshots = list(selected_shots(context))
|
|
||||||
if strip and strip.type in strip_types and strip.atc_object_id:
|
if strip and strip.type in strip_types and strip.atc_object_id:
|
||||||
|
self._draw_attractstrip_buttons(context, strip)
|
||||||
|
elif context.selected_sequences:
|
||||||
|
if len(context.selected_sequences) > 1:
|
||||||
|
noun = 'Selected Strips'
|
||||||
|
else:
|
||||||
|
noun = 'This Strip'
|
||||||
|
layout.operator(ATTRACT_OT_submit_selected.bl_idname,
|
||||||
|
text='Submit %s as New Shot' % noun)
|
||||||
|
layout.operator('attract.shot_relink')
|
||||||
|
else:
|
||||||
|
layout.operator(ATTRACT_OT_submit_all.bl_idname)
|
||||||
|
layout.operator(ATTRACT_OT_project_open_in_browser.bl_idname, icon='WORLD')
|
||||||
|
|
||||||
|
def _draw_attractstrip_buttons(self, context, strip):
|
||||||
|
"""Draw buttons when selected strips are Attract shots."""
|
||||||
|
|
||||||
|
layout = self.layout
|
||||||
|
selshots = list(selected_shots(context))
|
||||||
|
|
||||||
if len(selshots) > 1:
|
if len(selshots) > 1:
|
||||||
noun = '%i Shots' % len(selshots)
|
noun = '%i Shots' % len(selshots)
|
||||||
else:
|
else:
|
||||||
noun = 'This Shot'
|
noun = 'This Shot'
|
||||||
|
|
||||||
if strip.atc_object_id_conflict:
|
if strip.atc_object_id_conflict:
|
||||||
warnbox = layout.box()
|
warnbox = layout.box()
|
||||||
warnbox.alert = True
|
warnbox.alert = True
|
||||||
warnbox.label(text='Warning: This shot is linked to multiple sequencer strips.',
|
warnbox.label(text='Warning: This shot is linked to multiple sequencer strips.',
|
||||||
icon='ERROR')
|
icon='ERROR')
|
||||||
|
|
||||||
layout.prop(strip, 'atc_name', text='Name')
|
layout.prop(strip, 'atc_name', text='Name')
|
||||||
layout.prop(strip, 'atc_status', text='Status')
|
layout.prop(strip, 'atc_status', text='Status')
|
||||||
|
|
||||||
# Create a special sub-layout for read-only properties.
|
# Create a special sub-layout for read-only properties.
|
||||||
ro_sub = layout.column(align=True)
|
ro_sub = layout.column(align=True)
|
||||||
ro_sub.enabled = False
|
ro_sub.enabled = False
|
||||||
ro_sub.prop(strip, 'atc_description', text='Description')
|
ro_sub.prop(strip, 'atc_description', text='Description')
|
||||||
ro_sub.prop(strip, 'atc_notes', text='Notes')
|
ro_sub.prop(strip, 'atc_notes', text='Notes')
|
||||||
|
|
||||||
if strip.atc_is_synced:
|
if strip.atc_is_synced:
|
||||||
sub = layout.column(align=True)
|
sub = layout.column(align=True)
|
||||||
row = sub.row(align=True)
|
row = sub.row(align=True)
|
||||||
@@ -220,7 +240,7 @@ class AttractToolsPanel(AttractPollMixin, Panel):
|
|||||||
icon='TRIA_UP')
|
icon='TRIA_UP')
|
||||||
else:
|
else:
|
||||||
row.operator(ATTRACT_OT_submit_all.bl_idname)
|
row.operator(ATTRACT_OT_submit_all.bl_idname)
|
||||||
row.operator(AttractShotFetchUpdate.bl_idname,
|
row.operator(ATTRACT_OT_shot_fetch_update.bl_idname,
|
||||||
text='', icon='FILE_REFRESH')
|
text='', icon='FILE_REFRESH')
|
||||||
row.operator(ATTRACT_OT_shot_open_in_browser.bl_idname,
|
row.operator(ATTRACT_OT_shot_open_in_browser.bl_idname,
|
||||||
text='', icon='WORLD')
|
text='', icon='WORLD')
|
||||||
@@ -235,21 +255,10 @@ class AttractToolsPanel(AttractPollMixin, Panel):
|
|||||||
dangerous_sub.operator('attract.strip_unlink',
|
dangerous_sub.operator('attract.strip_unlink',
|
||||||
text='Unlink %s' % noun,
|
text='Unlink %s' % noun,
|
||||||
icon='PANEL_CLOSE')
|
icon='PANEL_CLOSE')
|
||||||
dangerous_sub.operator(AttractShotDelete.bl_idname,
|
dangerous_sub.operator(ATTRACT_OT_shot_delete.bl_idname,
|
||||||
text='Delete %s' % noun,
|
text='Delete %s' % noun,
|
||||||
icon='CANCEL')
|
icon='CANCEL')
|
||||||
|
|
||||||
elif context.selected_sequences:
|
|
||||||
if len(context.selected_sequences) > 1:
|
|
||||||
noun = 'Selected Strips'
|
|
||||||
else:
|
|
||||||
noun = 'This Strip'
|
|
||||||
layout.operator(AttractShotSubmitSelected.bl_idname,
|
|
||||||
text='Submit %s as New Shot' % noun)
|
|
||||||
layout.operator('attract.shot_relink')
|
|
||||||
else:
|
|
||||||
layout.operator(ATTRACT_OT_submit_all.bl_idname)
|
|
||||||
|
|
||||||
|
|
||||||
class AttractOperatorMixin(AttractPollMixin):
|
class AttractOperatorMixin(AttractPollMixin):
|
||||||
"""Mix-in class for all Attract operators."""
|
"""Mix-in class for all Attract operators."""
|
||||||
@@ -379,7 +388,7 @@ class AttractOperatorMixin(AttractPollMixin):
|
|||||||
draw.tag_redraw_all_sequencer_editors()
|
draw.tag_redraw_all_sequencer_editors()
|
||||||
|
|
||||||
|
|
||||||
class AttractShotFetchUpdate(AttractOperatorMixin, Operator):
|
class ATTRACT_OT_shot_fetch_update(AttractOperatorMixin, Operator):
|
||||||
bl_idname = "attract.shot_fetch_update"
|
bl_idname = "attract.shot_fetch_update"
|
||||||
bl_label = "Fetch Update From Attract"
|
bl_label = "Fetch Update From Attract"
|
||||||
bl_description = 'Update status, description & notes from Attract'
|
bl_description = 'Update status, description & notes from Attract'
|
||||||
@@ -398,7 +407,7 @@ class AttractShotFetchUpdate(AttractOperatorMixin, Operator):
|
|||||||
return {'FINISHED'}
|
return {'FINISHED'}
|
||||||
|
|
||||||
|
|
||||||
class AttractShotRelink(AttractShotFetchUpdate):
|
class ATTRACT_OT_shot_relink(AttractOperatorMixin, Operator):
|
||||||
bl_idname = "attract.shot_relink"
|
bl_idname = "attract.shot_relink"
|
||||||
bl_label = "Relink With Attract"
|
bl_label = "Relink With Attract"
|
||||||
|
|
||||||
@@ -467,7 +476,7 @@ class ATTRACT_OT_shot_open_in_browser(AttractOperatorMixin, Operator):
|
|||||||
return {'FINISHED'}
|
return {'FINISHED'}
|
||||||
|
|
||||||
|
|
||||||
class AttractShotDelete(AttractOperatorMixin, Operator):
|
class ATTRACT_OT_shot_delete(AttractOperatorMixin, Operator):
|
||||||
bl_idname = 'attract.shot_delete'
|
bl_idname = 'attract.shot_delete'
|
||||||
bl_label = 'Delete Shot'
|
bl_label = 'Delete Shot'
|
||||||
bl_description = 'Remove this shot from Attract'
|
bl_description = 'Remove this shot from Attract'
|
||||||
@@ -522,7 +531,7 @@ class AttractShotDelete(AttractOperatorMixin, Operator):
|
|||||||
col.prop(self, 'confirm', text="I hereby confirm: delete %s from The Edit." % noun)
|
col.prop(self, 'confirm', text="I hereby confirm: delete %s from The Edit." % noun)
|
||||||
|
|
||||||
|
|
||||||
class AttractStripUnlink(AttractOperatorMixin, Operator):
|
class ATTRACT_OT_strip_unlink(AttractOperatorMixin, Operator):
|
||||||
bl_idname = 'attract.strip_unlink'
|
bl_idname = 'attract.strip_unlink'
|
||||||
bl_label = 'Unlink Shot From This Strip'
|
bl_label = 'Unlink Shot From This Strip'
|
||||||
bl_description = 'Remove Attract props from the selected strip(s)'
|
bl_description = 'Remove Attract props from the selected strip(s)'
|
||||||
@@ -566,7 +575,7 @@ class AttractStripUnlink(AttractOperatorMixin, Operator):
|
|||||||
return {'FINISHED'}
|
return {'FINISHED'}
|
||||||
|
|
||||||
|
|
||||||
class AttractShotSubmitSelected(AttractOperatorMixin, Operator):
|
class ATTRACT_OT_submit_selected(AttractOperatorMixin, Operator):
|
||||||
bl_idname = 'attract.submit_selected'
|
bl_idname = 'attract.submit_selected'
|
||||||
bl_label = 'Submit All Selected'
|
bl_label = 'Submit All Selected'
|
||||||
bl_description = 'Submits all selected strips to Attract'
|
bl_description = 'Submits all selected strips to Attract'
|
||||||
@@ -906,6 +915,37 @@ class ATTRACT_OT_copy_id_to_clipboard(AttractOperatorMixin, Operator):
|
|||||||
return {'FINISHED'}
|
return {'FINISHED'}
|
||||||
|
|
||||||
|
|
||||||
|
class ATTRACT_OT_project_open_in_browser(Operator):
|
||||||
|
bl_idname = 'attract.project_open_in_browser'
|
||||||
|
bl_label = 'Open Project in Browser'
|
||||||
|
bl_description = 'Opens a webbrowser to show the project in Attract'
|
||||||
|
|
||||||
|
project_id = bpy.props.StringProperty(name='Project ID', default='')
|
||||||
|
|
||||||
|
def execute(self, context):
|
||||||
|
import webbrowser
|
||||||
|
import urllib.parse
|
||||||
|
|
||||||
|
import pillarsdk
|
||||||
|
from ..pillar import sync_call
|
||||||
|
from ..blender import PILLAR_WEB_SERVER_URL, preferences
|
||||||
|
|
||||||
|
if not self.project_id:
|
||||||
|
self.project_id = preferences().project.project
|
||||||
|
|
||||||
|
project = sync_call(pillarsdk.Project.find, self.project_id, {'projection': {'url': True}})
|
||||||
|
|
||||||
|
if log.isEnabledFor(logging.DEBUG):
|
||||||
|
import pprint
|
||||||
|
log.debug('found project: %s', pprint.pformat(project.to_dict()))
|
||||||
|
|
||||||
|
url = urllib.parse.urljoin(PILLAR_WEB_SERVER_URL, 'attract/' + project.url)
|
||||||
|
webbrowser.open_new_tab(url)
|
||||||
|
self.report({'INFO'}, 'Opened a browser at %s' % url)
|
||||||
|
|
||||||
|
return {'FINISHED'}
|
||||||
|
|
||||||
|
|
||||||
def draw_strip_movie_meta(self, context):
|
def draw_strip_movie_meta(self, context):
|
||||||
strip = active_strip(context)
|
strip = active_strip(context)
|
||||||
if not strip:
|
if not strip:
|
||||||
@@ -955,7 +995,9 @@ def deactivate():
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
_rna_classes = [cls for cls in locals() if isinstance(cls, type) and hasattr(cls, 'bl_rna')]
|
_rna_classes = [cls for cls in locals().values()
|
||||||
|
if isinstance(cls, type) and cls.__name__.startswith('ATTRACT')]
|
||||||
|
log.info('RNA classes:\n%s', '\n'.join([repr(cls) for cls in _rna_classes]))
|
||||||
|
|
||||||
|
|
||||||
def register():
|
def register():
|
||||||
|
@@ -18,9 +18,12 @@
|
|||||||
|
|
||||||
# <pep8 compliant>
|
# <pep8 compliant>
|
||||||
|
|
||||||
import bpy
|
|
||||||
import logging
|
import logging
|
||||||
import collections
|
import typing
|
||||||
|
|
||||||
|
import bpy
|
||||||
|
import bgl
|
||||||
|
import gpu
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
@@ -34,10 +37,74 @@ strip_status_colour = {
|
|||||||
'todo': (1.0, 0.5019607843137255, 0.5019607843137255)
|
'todo': (1.0, 0.5019607843137255, 0.5019607843137255)
|
||||||
}
|
}
|
||||||
|
|
||||||
CONFLICT_COLOUR = (0.576, 0.118, 0.035) # RGB tuple
|
CONFLICT_COLOUR = (0.576, 0.118, 0.035, 1.0) # RGBA tuple
|
||||||
|
|
||||||
|
gpu_vertex_shader = '''
|
||||||
|
uniform mat4 ModelViewProjectionMatrix;
|
||||||
|
|
||||||
|
layout (location = 0) in vec2 pos;
|
||||||
|
layout (location = 1) in vec4 color;
|
||||||
|
|
||||||
|
out vec4 lineColor; // output to the fragment shader
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
gl_Position = ModelViewProjectionMatrix * vec4(pos.x, pos.y, 0.0, 1.0);
|
||||||
|
lineColor = color;
|
||||||
|
}
|
||||||
|
'''
|
||||||
|
|
||||||
|
gpu_fragment_shader = '''
|
||||||
|
out vec4 fragColor;
|
||||||
|
in vec4 lineColor;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
fragColor = lineColor;
|
||||||
|
}
|
||||||
|
'''
|
||||||
|
|
||||||
|
Float2 = typing.Tuple[float, float]
|
||||||
|
Float3 = typing.Tuple[float, float, float]
|
||||||
|
Float4 = typing.Tuple[float, float, float, float]
|
||||||
|
|
||||||
|
|
||||||
def get_strip_rectf(strip):
|
class AttractLineDrawer:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self._format = gpu.types.GPUVertFormat()
|
||||||
|
self._pos_id = self._format.attr_add(
|
||||||
|
id="pos",
|
||||||
|
comp_type="F32",
|
||||||
|
len=2,
|
||||||
|
fetch_mode="FLOAT")
|
||||||
|
self._color_id = self._format.attr_add(
|
||||||
|
id="color",
|
||||||
|
comp_type="F32",
|
||||||
|
len=4,
|
||||||
|
fetch_mode="FLOAT")
|
||||||
|
|
||||||
|
self.shader = gpu.types.GPUShader(gpu_vertex_shader, gpu_fragment_shader)
|
||||||
|
|
||||||
|
def draw(self,
|
||||||
|
coords: typing.List[Float2],
|
||||||
|
colors: typing.List[Float4]):
|
||||||
|
if not coords:
|
||||||
|
return
|
||||||
|
|
||||||
|
bgl.glEnable(bgl.GL_BLEND)
|
||||||
|
bgl.glLineWidth(2.0)
|
||||||
|
|
||||||
|
vbo = gpu.types.GPUVertBuf(len=len(coords), format=self._format)
|
||||||
|
vbo.attr_fill(id=self._pos_id, data=coords)
|
||||||
|
vbo.attr_fill(id=self._color_id, data=colors)
|
||||||
|
|
||||||
|
batch = gpu.types.GPUBatch(type="LINES", buf=vbo)
|
||||||
|
batch.program_set(self.shader)
|
||||||
|
batch.draw()
|
||||||
|
|
||||||
|
|
||||||
|
def get_strip_rectf(strip) -> Float4:
|
||||||
# Get x and y in terms of the grid's frames and channels
|
# Get x and y in terms of the grid's frames and channels
|
||||||
x1 = strip.frame_final_start
|
x1 = strip.frame_final_start
|
||||||
x2 = strip.frame_final_end
|
x2 = strip.frame_final_end
|
||||||
@@ -47,59 +114,56 @@ def get_strip_rectf(strip):
|
|||||||
return x1, y1, x2, y2
|
return x1, y1, x2, y2
|
||||||
|
|
||||||
|
|
||||||
def draw_underline_in_strip(strip_coords, pixel_size_x, color):
|
def underline_in_strip(strip_coords: Float4,
|
||||||
from bgl import glColor4f, glRectf, glEnable, glDisable, GL_BLEND
|
pixel_size_x: float,
|
||||||
import bgl
|
color: Float4,
|
||||||
|
out_coords: typing.List[Float2],
|
||||||
context = bpy.context
|
out_colors: typing.List[Float4]):
|
||||||
|
|
||||||
# Strip coords
|
# Strip coords
|
||||||
s_x1, s_y1, s_x2, s_y2 = strip_coords
|
s_x1, s_y1, s_x2, s_y2 = strip_coords
|
||||||
|
|
||||||
# be careful not to draw over the current frame line
|
# be careful not to draw over the current frame line
|
||||||
cf_x = context.scene.frame_current_final
|
cf_x = bpy.context.scene.frame_current_final
|
||||||
|
|
||||||
bgl.glPushAttrib(bgl.GL_COLOR_BUFFER_BIT | bgl.GL_LINE_BIT)
|
# TODO(Sybren): figure out how to pass one colour per line,
|
||||||
|
# instead of one colour per vertex.
|
||||||
|
out_coords.append((s_x1, s_y1))
|
||||||
|
out_colors.append(color)
|
||||||
|
|
||||||
glColor4f(*color)
|
|
||||||
glEnable(GL_BLEND)
|
|
||||||
bgl.glLineWidth(2)
|
|
||||||
bgl.glBegin(bgl.GL_LINES)
|
|
||||||
|
|
||||||
bgl.glVertex2f(s_x1, s_y1)
|
|
||||||
if s_x1 < cf_x < s_x2:
|
if s_x1 < cf_x < s_x2:
|
||||||
# Bad luck, the line passes our strip
|
# Bad luck, the line passes our strip, so draw two lines.
|
||||||
bgl.glVertex2f(cf_x - pixel_size_x, s_y1)
|
out_coords.append((cf_x - pixel_size_x, s_y1))
|
||||||
bgl.glVertex2f(cf_x + pixel_size_x, s_y1)
|
out_colors.append(color)
|
||||||
bgl.glVertex2f(s_x2, s_y1)
|
|
||||||
|
|
||||||
bgl.glEnd()
|
out_coords.append((cf_x + pixel_size_x, s_y1))
|
||||||
bgl.glPopAttrib()
|
out_colors.append(color)
|
||||||
|
|
||||||
|
out_coords.append((s_x2, s_y1))
|
||||||
|
out_colors.append(color)
|
||||||
|
|
||||||
|
|
||||||
def draw_strip_conflict(strip_coords, pixel_size_x):
|
def strip_conflict(strip_coords: Float4,
|
||||||
|
out_coords: typing.List[Float2],
|
||||||
|
out_colors: typing.List[Float4]):
|
||||||
"""Draws conflicting states between strips."""
|
"""Draws conflicting states between strips."""
|
||||||
|
|
||||||
import bgl
|
|
||||||
|
|
||||||
s_x1, s_y1, s_x2, s_y2 = strip_coords
|
s_x1, s_y1, s_x2, s_y2 = strip_coords
|
||||||
bgl.glPushAttrib(bgl.GL_COLOR_BUFFER_BIT | bgl.GL_LINE_BIT)
|
|
||||||
|
|
||||||
# Always draw the full rectangle, the conflict should be resolved and thus stand out.
|
# TODO(Sybren): draw a rectangle instead of a line.
|
||||||
bgl.glColor3f(*CONFLICT_COLOUR)
|
out_coords.append((s_x1, s_y2))
|
||||||
bgl.glLineWidth(2)
|
out_colors.append(CONFLICT_COLOUR)
|
||||||
|
|
||||||
bgl.glBegin(bgl.GL_LINE_LOOP)
|
out_coords.append((s_x2, s_y1))
|
||||||
bgl.glVertex2f(s_x1, s_y1)
|
out_colors.append(CONFLICT_COLOUR)
|
||||||
bgl.glVertex2f(s_x2, s_y1)
|
|
||||||
bgl.glVertex2f(s_x2, s_y2)
|
|
||||||
bgl.glVertex2f(s_x1, s_y2)
|
|
||||||
bgl.glEnd()
|
|
||||||
|
|
||||||
bgl.glPopAttrib()
|
out_coords.append((s_x2, s_y2))
|
||||||
|
out_colors.append(CONFLICT_COLOUR)
|
||||||
|
|
||||||
|
out_coords.append((s_x1, s_y1))
|
||||||
|
out_colors.append(CONFLICT_COLOUR)
|
||||||
|
|
||||||
|
|
||||||
def draw_callback_px():
|
def draw_callback_px(line_drawer: AttractLineDrawer):
|
||||||
context = bpy.context
|
context = bpy.context
|
||||||
|
|
||||||
if not context.scene.sequence_editor:
|
if not context.scene.sequence_editor:
|
||||||
@@ -115,6 +179,10 @@ def draw_callback_px():
|
|||||||
|
|
||||||
strips = shown_strips(context)
|
strips = shown_strips(context)
|
||||||
|
|
||||||
|
coords = [] # type: typing.List[Float2]
|
||||||
|
colors = [] # type: typing.List[Float4]
|
||||||
|
|
||||||
|
# Collect all the lines (vertex coords + vertex colours) to draw.
|
||||||
for strip in strips:
|
for strip in strips:
|
||||||
if not strip.atc_object_id:
|
if not strip.atc_object_id:
|
||||||
continue
|
continue
|
||||||
@@ -136,9 +204,11 @@ def draw_callback_px():
|
|||||||
|
|
||||||
alpha = 1.0 if strip.atc_is_synced else 0.5
|
alpha = 1.0 if strip.atc_is_synced else 0.5
|
||||||
|
|
||||||
draw_underline_in_strip(strip_coords, pixel_size_x, color + (alpha,))
|
underline_in_strip(strip_coords, pixel_size_x, color + (alpha,), coords, colors)
|
||||||
if strip.atc_is_synced and strip.atc_object_id_conflict:
|
if strip.atc_is_synced and strip.atc_object_id_conflict:
|
||||||
draw_strip_conflict(strip_coords, pixel_size_x)
|
strip_conflict(strip_coords, coords, colors)
|
||||||
|
|
||||||
|
line_drawer.draw(coords, colors)
|
||||||
|
|
||||||
|
|
||||||
def tag_redraw_all_sequencer_editors():
|
def tag_redraw_all_sequencer_editors():
|
||||||
@@ -162,8 +232,13 @@ def callback_enable():
|
|||||||
if cb_handle:
|
if cb_handle:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# Doing GPU stuff in the background crashes Blender, so let's not.
|
||||||
|
if bpy.app.background:
|
||||||
|
return
|
||||||
|
|
||||||
|
line_drawer = AttractLineDrawer()
|
||||||
cb_handle[:] = bpy.types.SpaceSequenceEditor.draw_handler_add(
|
cb_handle[:] = bpy.types.SpaceSequenceEditor.draw_handler_add(
|
||||||
draw_callback_px, (), 'WINDOW', 'POST_VIEW'),
|
draw_callback_px, (line_drawer,), 'WINDOW', 'POST_VIEW'),
|
||||||
|
|
||||||
tag_redraw_all_sequencer_editors()
|
tag_redraw_all_sequencer_editors()
|
||||||
|
|
||||||
|
182
blender_cloud/attract/draw_27.py
Normal file
182
blender_cloud/attract/draw_27.py
Normal file
@@ -0,0 +1,182 @@
|
|||||||
|
# ##### 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 #####
|
||||||
|
|
||||||
|
# <pep8 compliant>
|
||||||
|
|
||||||
|
import bpy
|
||||||
|
import logging
|
||||||
|
import collections
|
||||||
|
|
||||||
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
strip_status_colour = {
|
||||||
|
None: (0.7, 0.7, 0.7),
|
||||||
|
'approved': (0.6392156862745098, 0.8784313725490196, 0.30196078431372547),
|
||||||
|
'final': (0.9058823529411765, 0.9607843137254902, 0.8274509803921568),
|
||||||
|
'in_progress': (1.0, 0.7450980392156863, 0.0),
|
||||||
|
'on_hold': (0.796078431372549, 0.6196078431372549, 0.08235294117647059),
|
||||||
|
'review': (0.8941176470588236, 0.9607843137254902, 0.9764705882352941),
|
||||||
|
'todo': (1.0, 0.5019607843137255, 0.5019607843137255)
|
||||||
|
}
|
||||||
|
|
||||||
|
CONFLICT_COLOUR = (0.576, 0.118, 0.035) # RGB tuple
|
||||||
|
|
||||||
|
|
||||||
|
def get_strip_rectf(strip):
|
||||||
|
# Get x and y in terms of the grid's frames and channels
|
||||||
|
x1 = strip.frame_final_start
|
||||||
|
x2 = strip.frame_final_end
|
||||||
|
y1 = strip.channel + 0.2
|
||||||
|
y2 = strip.channel - 0.2 + 1
|
||||||
|
|
||||||
|
return x1, y1, x2, y2
|
||||||
|
|
||||||
|
|
||||||
|
def draw_underline_in_strip(strip_coords, pixel_size_x, color):
|
||||||
|
from bgl import glColor4f, glRectf, glEnable, glDisable, GL_BLEND
|
||||||
|
import bgl
|
||||||
|
|
||||||
|
context = bpy.context
|
||||||
|
|
||||||
|
# Strip coords
|
||||||
|
s_x1, s_y1, s_x2, s_y2 = strip_coords
|
||||||
|
|
||||||
|
# be careful not to draw over the current frame line
|
||||||
|
cf_x = context.scene.frame_current_final
|
||||||
|
|
||||||
|
bgl.glPushAttrib(bgl.GL_COLOR_BUFFER_BIT | bgl.GL_LINE_BIT)
|
||||||
|
|
||||||
|
glColor4f(*color)
|
||||||
|
glEnable(GL_BLEND)
|
||||||
|
bgl.glLineWidth(2)
|
||||||
|
bgl.glBegin(bgl.GL_LINES)
|
||||||
|
|
||||||
|
bgl.glVertex2f(s_x1, s_y1)
|
||||||
|
if s_x1 < cf_x < s_x2:
|
||||||
|
# Bad luck, the line passes our strip
|
||||||
|
bgl.glVertex2f(cf_x - pixel_size_x, s_y1)
|
||||||
|
bgl.glVertex2f(cf_x + pixel_size_x, s_y1)
|
||||||
|
bgl.glVertex2f(s_x2, s_y1)
|
||||||
|
|
||||||
|
bgl.glEnd()
|
||||||
|
bgl.glPopAttrib()
|
||||||
|
|
||||||
|
|
||||||
|
def draw_strip_conflict(strip_coords, pixel_size_x):
|
||||||
|
"""Draws conflicting states between strips."""
|
||||||
|
|
||||||
|
import bgl
|
||||||
|
|
||||||
|
s_x1, s_y1, s_x2, s_y2 = strip_coords
|
||||||
|
bgl.glPushAttrib(bgl.GL_COLOR_BUFFER_BIT | bgl.GL_LINE_BIT)
|
||||||
|
|
||||||
|
# Always draw the full rectangle, the conflict should be resolved and thus stand out.
|
||||||
|
bgl.glColor3f(*CONFLICT_COLOUR)
|
||||||
|
bgl.glLineWidth(2)
|
||||||
|
|
||||||
|
bgl.glBegin(bgl.GL_LINE_LOOP)
|
||||||
|
bgl.glVertex2f(s_x1, s_y1)
|
||||||
|
bgl.glVertex2f(s_x2, s_y1)
|
||||||
|
bgl.glVertex2f(s_x2, s_y2)
|
||||||
|
bgl.glVertex2f(s_x1, s_y2)
|
||||||
|
bgl.glEnd()
|
||||||
|
|
||||||
|
bgl.glPopAttrib()
|
||||||
|
|
||||||
|
|
||||||
|
def draw_callback_px():
|
||||||
|
context = bpy.context
|
||||||
|
|
||||||
|
if not context.scene.sequence_editor:
|
||||||
|
return
|
||||||
|
|
||||||
|
from . import shown_strips
|
||||||
|
|
||||||
|
region = context.region
|
||||||
|
xwin1, ywin1 = region.view2d.region_to_view(0, 0)
|
||||||
|
xwin2, ywin2 = region.view2d.region_to_view(region.width, region.height)
|
||||||
|
one_pixel_further_x, one_pixel_further_y = region.view2d.region_to_view(1, 1)
|
||||||
|
pixel_size_x = one_pixel_further_x - xwin1
|
||||||
|
|
||||||
|
strips = shown_strips(context)
|
||||||
|
|
||||||
|
for strip in strips:
|
||||||
|
if not strip.atc_object_id:
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Get corners (x1, y1), (x2, y2) of the strip rectangle in px region coords
|
||||||
|
strip_coords = get_strip_rectf(strip)
|
||||||
|
|
||||||
|
# check if any of the coordinates are out of bounds
|
||||||
|
if strip_coords[0] > xwin2 or strip_coords[2] < xwin1 or strip_coords[1] > ywin2 or \
|
||||||
|
strip_coords[3] < ywin1:
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Draw
|
||||||
|
status = strip.atc_status
|
||||||
|
if status in strip_status_colour:
|
||||||
|
color = strip_status_colour[status]
|
||||||
|
else:
|
||||||
|
color = strip_status_colour[None]
|
||||||
|
|
||||||
|
alpha = 1.0 if strip.atc_is_synced else 0.5
|
||||||
|
|
||||||
|
draw_underline_in_strip(strip_coords, pixel_size_x, color + (alpha,))
|
||||||
|
if strip.atc_is_synced and strip.atc_object_id_conflict:
|
||||||
|
draw_strip_conflict(strip_coords, pixel_size_x)
|
||||||
|
|
||||||
|
|
||||||
|
def tag_redraw_all_sequencer_editors():
|
||||||
|
context = bpy.context
|
||||||
|
|
||||||
|
# Py cant access notifiers
|
||||||
|
for window in context.window_manager.windows:
|
||||||
|
for area in window.screen.areas:
|
||||||
|
if area.type == 'SEQUENCE_EDITOR':
|
||||||
|
for region in area.regions:
|
||||||
|
if region.type == 'WINDOW':
|
||||||
|
region.tag_redraw()
|
||||||
|
|
||||||
|
|
||||||
|
# This is a list so it can be changed instead of set
|
||||||
|
# if it is only changed, it does not have to be declared as a global everywhere
|
||||||
|
cb_handle = []
|
||||||
|
|
||||||
|
|
||||||
|
def callback_enable():
|
||||||
|
if cb_handle:
|
||||||
|
return
|
||||||
|
|
||||||
|
cb_handle[:] = bpy.types.SpaceSequenceEditor.draw_handler_add(
|
||||||
|
draw_callback_px, (), 'WINDOW', 'POST_VIEW'),
|
||||||
|
|
||||||
|
tag_redraw_all_sequencer_editors()
|
||||||
|
|
||||||
|
|
||||||
|
def callback_disable():
|
||||||
|
if not cb_handle:
|
||||||
|
return
|
||||||
|
|
||||||
|
try:
|
||||||
|
bpy.types.SpaceSequenceEditor.draw_handler_remove(cb_handle[0], 'WINDOW')
|
||||||
|
except ValueError:
|
||||||
|
# Thrown when already removed.
|
||||||
|
pass
|
||||||
|
cb_handle.clear()
|
||||||
|
|
||||||
|
tag_redraw_all_sequencer_editors()
|
@@ -219,8 +219,8 @@ class BlenderCloudPreferences(AddonPreferences):
|
|||||||
flamenco_manager = PointerProperty(type=flamenco.FlamencoManagerGroup)
|
flamenco_manager = PointerProperty(type=flamenco.FlamencoManagerGroup)
|
||||||
flamenco_exclude_filter = StringProperty(
|
flamenco_exclude_filter = StringProperty(
|
||||||
name='File Exclude Filter',
|
name='File Exclude Filter',
|
||||||
description='Filter like "*.abc;*.mkv" to prevent certain files to be packed '
|
description='Space-separated list of filename filters, like "*.abc *.mkv", to prevent '
|
||||||
'into the output directory',
|
'matching files from being packed into the output directory',
|
||||||
default='',
|
default='',
|
||||||
update=project_specific.store,
|
update=project_specific.store,
|
||||||
)
|
)
|
||||||
@@ -248,6 +248,15 @@ class BlenderCloudPreferences(AddonPreferences):
|
|||||||
soft_max=4,
|
soft_max=4,
|
||||||
update=project_specific.store,
|
update=project_specific.store,
|
||||||
)
|
)
|
||||||
|
flamenco_relative_only = BoolProperty(
|
||||||
|
name='Relative Paths Only',
|
||||||
|
description='When enabled, only assets that are referred to with a relative path are '
|
||||||
|
'packed, and assets referred to by an absolute path are excluded from the '
|
||||||
|
'BAT pack. When disabled, all assets are packed.',
|
||||||
|
default=False,
|
||||||
|
update=project_specific.store,
|
||||||
|
)
|
||||||
|
|
||||||
flamenco_open_browser_after_submit = BoolProperty(
|
flamenco_open_browser_after_submit = BoolProperty(
|
||||||
name='Open Browser after Submitting Job',
|
name='Open Browser after Submitting Job',
|
||||||
description='When enabled, Blender will open a webbrowser',
|
description='When enabled, Blender will open a webbrowser',
|
||||||
@@ -473,6 +482,7 @@ class BlenderCloudPreferences(AddonPreferences):
|
|||||||
path_box.label(text='Blend file is not in your project path, '
|
path_box.label(text='Blend file is not in your project path, '
|
||||||
'unable to give output path example.')
|
'unable to give output path example.')
|
||||||
|
|
||||||
|
flamenco_box.prop(self, 'flamenco_relative_only')
|
||||||
flamenco_box.prop(self, 'flamenco_open_browser_after_submit')
|
flamenco_box.prop(self, 'flamenco_open_browser_after_submit')
|
||||||
|
|
||||||
|
|
||||||
@@ -652,8 +662,16 @@ class PILLAR_PT_image_custom_properties(rna_prop_ui.PropertyPanel, bpy.types.Pan
|
|||||||
_property_type = bpy.types.Image
|
_property_type = bpy.types.Image
|
||||||
|
|
||||||
|
|
||||||
|
def ctx_preferences():
|
||||||
|
"""Returns bpy.context.preferences in a 2.79-compatible way."""
|
||||||
|
try:
|
||||||
|
return bpy.context.preferences
|
||||||
|
except AttributeError:
|
||||||
|
return bpy.context.user_preferences
|
||||||
|
|
||||||
|
|
||||||
def preferences() -> BlenderCloudPreferences:
|
def preferences() -> BlenderCloudPreferences:
|
||||||
return bpy.context.user_preferences.addons[ADDON_NAME].preferences
|
return ctx_preferences().addons[ADDON_NAME].preferences
|
||||||
|
|
||||||
|
|
||||||
def load_custom_icons():
|
def load_custom_icons():
|
||||||
|
@@ -45,7 +45,7 @@ import bpy
|
|||||||
from bpy.types import AddonPreferences, Operator, WindowManager, Scene, PropertyGroup
|
from bpy.types import AddonPreferences, Operator, WindowManager, Scene, PropertyGroup
|
||||||
from bpy.props import StringProperty, EnumProperty, PointerProperty, BoolProperty, IntProperty
|
from bpy.props import StringProperty, EnumProperty, PointerProperty, BoolProperty, IntProperty
|
||||||
|
|
||||||
from .. import async_loop, pillar, project_specific
|
from .. import async_loop, pillar, project_specific, utils
|
||||||
from ..utils import pyside_cache, redraw
|
from ..utils import pyside_cache, redraw
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
@@ -53,6 +53,22 @@ log = logging.getLogger(__name__)
|
|||||||
# Global flag used to determine whether panels etc. can be drawn.
|
# Global flag used to determine whether panels etc. can be drawn.
|
||||||
flamenco_is_active = False
|
flamenco_is_active = False
|
||||||
|
|
||||||
|
# 'image' file formats that actually produce a video.
|
||||||
|
VIDEO_FILE_FORMATS = {'FFMPEG', 'AVI_RAW', 'AVI_JPEG'}
|
||||||
|
|
||||||
|
# Video container name (from bpy.context.scene.render.ffmpeg.format) to file
|
||||||
|
# extension mapping. Any container name not listed here will be converted to
|
||||||
|
# lower case and prepended with a period. This is basically copied from
|
||||||
|
# Blender's source, get_file_extensions() in writeffmpeg.c.
|
||||||
|
VIDEO_CONTAINER_TO_EXTENSION = {
|
||||||
|
'QUICKTIME': '.mov',
|
||||||
|
'MPEG1': '.mpg',
|
||||||
|
'MPEG2': '.dvd',
|
||||||
|
'MPEG4': '.mp4',
|
||||||
|
'OGG': '.ogv',
|
||||||
|
'FLASH': '.flv',
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@pyside_cache('manager')
|
@pyside_cache('manager')
|
||||||
def available_managers(self, context):
|
def available_managers(self, context):
|
||||||
@@ -66,12 +82,35 @@ def available_managers(self, context):
|
|||||||
return [(p['_id'], p['name'], '') for p in mngrs]
|
return [(p['_id'], p['name'], '') for p in mngrs]
|
||||||
|
|
||||||
|
|
||||||
|
def manager_updated(self: 'FlamencoManagerGroup', context):
|
||||||
|
from ..blender import preferences
|
||||||
|
|
||||||
|
flamenco_manager_id = self.manager
|
||||||
|
log.debug('manager updated to %r', flamenco_manager_id)
|
||||||
|
|
||||||
|
prefs = preferences()
|
||||||
|
project_id = prefs.project.project
|
||||||
|
ps = prefs.get('project_settings', {}).get(project_id, {})
|
||||||
|
|
||||||
|
# Load per-project, per-manager settings for the current Manager.
|
||||||
|
try:
|
||||||
|
pppm = ps['flamenco_managers_settings'][flamenco_manager_id]
|
||||||
|
except KeyError:
|
||||||
|
# No settings for this manager, so nothing to do.
|
||||||
|
return
|
||||||
|
|
||||||
|
with project_specific.mark_as_loading():
|
||||||
|
project_specific.update_preferences(prefs,
|
||||||
|
project_specific.FLAMENCO_PER_PROJECT_PER_MANAGER,
|
||||||
|
pppm)
|
||||||
|
|
||||||
|
|
||||||
class FlamencoManagerGroup(PropertyGroup):
|
class FlamencoManagerGroup(PropertyGroup):
|
||||||
manager = EnumProperty(
|
manager = EnumProperty(
|
||||||
items=available_managers,
|
items=available_managers,
|
||||||
name='Flamenco Manager',
|
name='Flamenco Manager',
|
||||||
description='Which Flamenco Manager to use for jobs',
|
description='Which Flamenco Manager to use for jobs',
|
||||||
update=project_specific.store,
|
update=manager_updated,
|
||||||
)
|
)
|
||||||
|
|
||||||
status = EnumProperty(
|
status = EnumProperty(
|
||||||
@@ -146,6 +185,18 @@ class FLAMENCO_OT_fmanagers(async_loop.AsyncModalOperatorMixin,
|
|||||||
super().quit()
|
super().quit()
|
||||||
|
|
||||||
|
|
||||||
|
def guess_output_file_extension(output_format: str, scene) -> str:
|
||||||
|
"""Return extension, including period, like '.png' or '.mkv'."""
|
||||||
|
if output_format not in VIDEO_FILE_FORMATS:
|
||||||
|
return scene.render.file_extension
|
||||||
|
|
||||||
|
container = scene.render.ffmpeg.format
|
||||||
|
try:
|
||||||
|
return VIDEO_CONTAINER_TO_EXTENSION[container]
|
||||||
|
except KeyError:
|
||||||
|
return '.' + container.lower()
|
||||||
|
|
||||||
|
|
||||||
class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
||||||
pillar.AuthenticatedPillarOperatorMixin,
|
pillar.AuthenticatedPillarOperatorMixin,
|
||||||
FlamencoPollMixin,
|
FlamencoPollMixin,
|
||||||
@@ -189,11 +240,6 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
return
|
return
|
||||||
self.log.info('Will output render files to %s', render_output)
|
self.log.info('Will output render files to %s', render_output)
|
||||||
|
|
||||||
# BAT-pack the files to the destination directory.
|
|
||||||
outdir, outfile, missing_sources = await self.bat_pack(filepath)
|
|
||||||
if not outfile:
|
|
||||||
return
|
|
||||||
|
|
||||||
# Fetch Manager for doing path replacement.
|
# Fetch Manager for doing path replacement.
|
||||||
self.log.info('Going to fetch manager %s', self.user_id)
|
self.log.info('Going to fetch manager %s', self.user_id)
|
||||||
prefs = preferences()
|
prefs = preferences()
|
||||||
@@ -207,15 +253,17 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
self.quit()
|
self.quit()
|
||||||
return
|
return
|
||||||
|
|
||||||
# Create the job at Flamenco Server.
|
# Construct as much of the job settings as we can before BAT-packing.
|
||||||
context.window_manager.flamenco_status = 'COMMUNICATING'
|
# Validation should happen as soon as possible (BAT-packing can take minutes).
|
||||||
|
|
||||||
frame_range = scene.flamenco_render_frame_range.strip() or scene_frame_range(context)
|
frame_range = scene.flamenco_render_frame_range.strip() or scene_frame_range(context)
|
||||||
settings = {'blender_cmd': '{blender}',
|
settings = {'blender_cmd': '{blender}',
|
||||||
'chunk_size': scene.flamenco_render_fchunk_size,
|
'chunk_size': scene.flamenco_render_fchunk_size,
|
||||||
'filepath': manager.replace_path(outfile),
|
|
||||||
'frames': frame_range,
|
'frames': frame_range,
|
||||||
'render_output': manager.replace_path(render_output),
|
'render_output': manager.replace_path(render_output),
|
||||||
|
|
||||||
|
# Used for FFmpeg combining output frames into a video.
|
||||||
|
'fps': scene.render.fps / scene.render.fps_base,
|
||||||
|
'extract_audio': scene.render.ffmpeg.audio_codec != 'NONE',
|
||||||
}
|
}
|
||||||
|
|
||||||
# Add extra settings specific to the job type
|
# Add extra settings specific to the job type
|
||||||
@@ -232,9 +280,41 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
settings['cycles_sample_count'] = samples
|
settings['cycles_sample_count'] = samples
|
||||||
settings['format'] = 'EXR'
|
settings['format'] = 'EXR'
|
||||||
|
|
||||||
|
# Let Flamenco Server know whether we'll output images or video.
|
||||||
|
output_format = settings.get('format') or scene.render.image_settings.file_format
|
||||||
|
if output_format in VIDEO_FILE_FORMATS:
|
||||||
|
settings['images_or_video'] = 'video'
|
||||||
|
else:
|
||||||
|
settings['images_or_video'] = 'images'
|
||||||
|
|
||||||
|
# Always pass the file format, even though it won't be
|
||||||
|
# necessary for the actual render command (the blend file
|
||||||
|
# already has the correct setting). It's used by other
|
||||||
|
# commands, such as FFmpeg combining output frames into
|
||||||
|
# a video.
|
||||||
|
#
|
||||||
|
# Note that this might be overridden above when the job type
|
||||||
|
# requires a specific file format.
|
||||||
|
settings.setdefault('format', scene.render.image_settings.file_format)
|
||||||
|
settings['output_file_extension'] = guess_output_file_extension(output_format, scene)
|
||||||
|
|
||||||
|
if not self.validate_job_settings(context, settings):
|
||||||
|
self.quit()
|
||||||
|
return
|
||||||
|
|
||||||
|
# BAT-pack the files to the destination directory.
|
||||||
|
outdir, outfile, missing_sources = await self.bat_pack(filepath)
|
||||||
|
if not outfile:
|
||||||
|
return
|
||||||
|
settings['filepath'] = manager.replace_path(outfile)
|
||||||
|
|
||||||
|
# Create the job at Flamenco Server.
|
||||||
|
context.window_manager.flamenco_status = 'COMMUNICATING'
|
||||||
|
|
||||||
|
project_id = prefs.project.project
|
||||||
try:
|
try:
|
||||||
job_info = await create_job(self.user_id,
|
job_info = await create_job(self.user_id,
|
||||||
prefs.project.project,
|
project_id,
|
||||||
manager_id,
|
manager_id,
|
||||||
scene.flamenco_render_job_type,
|
scene.flamenco_render_job_type,
|
||||||
settings,
|
settings,
|
||||||
@@ -250,8 +330,29 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
with open(str(outdir / 'jobinfo.json'), 'w', encoding='utf8') as outfile:
|
with open(str(outdir / 'jobinfo.json'), 'w', encoding='utf8') as outfile:
|
||||||
import json
|
import json
|
||||||
|
|
||||||
job_info['missing_files'] = [str(mf) for mf in missing_sources]
|
# Version 1: Only the job doc was saved, with 'missing_files' added inside it.
|
||||||
json.dump(job_info, outfile, sort_keys=True, indent=4)
|
# Version 2:
|
||||||
|
# - '_meta' key was added to indicate version.
|
||||||
|
# - 'job' is saved in a 'job' key, 'misssing_files' still top-level key.
|
||||||
|
# - 'exclusion_filter', 'project_settings', and 'flamenco_manager_settings'
|
||||||
|
# keys were added.
|
||||||
|
project_settings = prefs.get('project_settings', {}).get(project_id, {})
|
||||||
|
if hasattr(project_settings, 'to_dict'):
|
||||||
|
project_settings = project_settings.to_dict()
|
||||||
|
|
||||||
|
# Pop out some settings so that settings of irrelevant Managers are excluded.
|
||||||
|
flamenco_managers_settings = project_settings.pop('flamenco_managers_settings', {})
|
||||||
|
flamenco_manager_settings = flamenco_managers_settings.pop(manager_id)
|
||||||
|
|
||||||
|
info = {
|
||||||
|
'_meta': {'version': 2},
|
||||||
|
'job': job_info,
|
||||||
|
'missing_files': [str(mf) for mf in missing_sources],
|
||||||
|
'exclusion_filter': (prefs.flamenco_exclude_filter or '').strip(),
|
||||||
|
'project_settings': project_settings,
|
||||||
|
'flamenco_manager_settings': flamenco_manager_settings,
|
||||||
|
}
|
||||||
|
json.dump(info, outfile, sort_keys=True, indent=4, cls=utils.JSONEncoder)
|
||||||
|
|
||||||
# We can now remove the local copy we made with bpy.ops.wm.save_as_mainfile().
|
# We can now remove the local copy we made with bpy.ops.wm.save_as_mainfile().
|
||||||
# Strictly speaking we can already remove it after the BAT-pack, but it may come in
|
# Strictly speaking we can already remove it after the BAT-pack, but it may come in
|
||||||
@@ -282,6 +383,26 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
|
|
||||||
self.quit()
|
self.quit()
|
||||||
|
|
||||||
|
def validate_job_settings(self, context, settings: dict) -> bool:
|
||||||
|
"""Perform settings validations for the selected job type.
|
||||||
|
|
||||||
|
:returns: True if ok, False if there was an error.
|
||||||
|
"""
|
||||||
|
|
||||||
|
job_type = context.scene.flamenco_render_job_type
|
||||||
|
if job_type == 'blender-video-chunks':
|
||||||
|
# This is not really a requirement, but should catch the mistake where it was
|
||||||
|
# left at the default setting (at the moment of writing that's 1 frame per chunk).
|
||||||
|
if context.scene.flamenco_render_fchunk_size < 10:
|
||||||
|
self.report({'ERROR'}, 'Job type requires chunks of at least 10 frames.')
|
||||||
|
return False
|
||||||
|
|
||||||
|
if settings['output_file_extension'] != '.mkv':
|
||||||
|
self.report({'ERROR'}, 'Job type requires rendering to Matroska files.')
|
||||||
|
return False
|
||||||
|
|
||||||
|
return True
|
||||||
|
|
||||||
def quit(self):
|
def quit(self):
|
||||||
if bpy.context.window_manager.flamenco_status != 'ABORTED':
|
if bpy.context.window_manager.flamenco_status != 'ABORTED':
|
||||||
bpy.context.window_manager.flamenco_status = 'DONE'
|
bpy.context.window_manager.flamenco_status = 'DONE'
|
||||||
@@ -348,6 +469,7 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
proj_abspath = bpy.path.abspath(prefs.cloud_project_local_path)
|
proj_abspath = bpy.path.abspath(prefs.cloud_project_local_path)
|
||||||
projdir = Path(proj_abspath).resolve()
|
projdir = Path(proj_abspath).resolve()
|
||||||
exclusion_filter = (prefs.flamenco_exclude_filter or '').strip()
|
exclusion_filter = (prefs.flamenco_exclude_filter or '').strip()
|
||||||
|
relative_only = prefs.flamenco_relative_only
|
||||||
|
|
||||||
self.log.debug('outdir : %s', outdir)
|
self.log.debug('outdir : %s', outdir)
|
||||||
self.log.debug('projdir: %s', projdir)
|
self.log.debug('projdir: %s', projdir)
|
||||||
@@ -362,7 +484,8 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
outfile, missing_sources = await bat_interface.copy(
|
outfile, missing_sources = await bat_interface.copy(
|
||||||
bpy.context, filepath, projdir, outdir, exclusion_filter)
|
bpy.context, filepath, projdir, outdir, exclusion_filter,
|
||||||
|
relative_only=relative_only)
|
||||||
except bat_interface.FileTransferError as ex:
|
except bat_interface.FileTransferError as ex:
|
||||||
self.log.error('Could not transfer %d files, starting with %s',
|
self.log.error('Could not transfer %d files, starting with %s',
|
||||||
len(ex.files_remaining), ex.files_remaining[0])
|
len(ex.files_remaining), ex.files_remaining[0])
|
||||||
@@ -584,12 +707,13 @@ def is_image_type(render_output_type: str) -> bool:
|
|||||||
def _render_output_path(
|
def _render_output_path(
|
||||||
local_project_path: str,
|
local_project_path: str,
|
||||||
blend_filepath: Path,
|
blend_filepath: Path,
|
||||||
|
flamenco_render_job_type: str,
|
||||||
flamenco_job_output_strip_components: int,
|
flamenco_job_output_strip_components: int,
|
||||||
flamenco_job_output_path: str,
|
flamenco_job_output_path: str,
|
||||||
render_image_format: str,
|
render_image_format: str,
|
||||||
flamenco_render_frame_range: str,
|
flamenco_render_frame_range: str,
|
||||||
include_rel_path: bool = True,
|
*,
|
||||||
) -> typing.Optional[PurePath]:
|
include_rel_path: bool = True) -> typing.Optional[PurePath]:
|
||||||
"""Cached version of render_output_path()
|
"""Cached version of render_output_path()
|
||||||
|
|
||||||
This ensures that redraws of the Flamenco Render and Add-on preferences panels
|
This ensures that redraws of the Flamenco Render and Add-on preferences panels
|
||||||
@@ -621,6 +745,9 @@ def _render_output_path(
|
|||||||
if stem.endswith('.flamenco'):
|
if stem.endswith('.flamenco'):
|
||||||
stem = stem[:-9]
|
stem = stem[:-9]
|
||||||
|
|
||||||
|
if flamenco_render_job_type == 'blender-video-chunks':
|
||||||
|
return output_top / ('YYYY_MM_DD_SEQ-%s.mkv' % stem)
|
||||||
|
|
||||||
if include_rel_path:
|
if include_rel_path:
|
||||||
rel_parts = proj_rel.parts[flamenco_job_output_strip_components:]
|
rel_parts = proj_rel.parts[flamenco_job_output_strip_components:]
|
||||||
dir_components = output_top.joinpath(*rel_parts) / stem
|
dir_components = output_top.joinpath(*rel_parts) / stem
|
||||||
@@ -658,6 +785,7 @@ def render_output_path(context, filepath: Path = None) -> typing.Optional[PurePa
|
|||||||
return _render_output_path(
|
return _render_output_path(
|
||||||
prefs.cloud_project_local_path,
|
prefs.cloud_project_local_path,
|
||||||
filepath,
|
filepath,
|
||||||
|
scene.flamenco_render_job_type,
|
||||||
prefs.flamenco_job_output_strip_components,
|
prefs.flamenco_job_output_strip_components,
|
||||||
job_output_path,
|
job_output_path,
|
||||||
scene.render.image_settings.file_format,
|
scene.render.image_settings.file_format,
|
||||||
@@ -854,6 +982,8 @@ def register():
|
|||||||
('blender-render', 'Simple Render', 'Simple frame-by-frame render'),
|
('blender-render', 'Simple Render', 'Simple frame-by-frame render'),
|
||||||
('blender-render-progressive', 'Progressive Render',
|
('blender-render-progressive', 'Progressive Render',
|
||||||
'Each frame is rendered multiple times with different Cycles sample chunks, then combined'),
|
'Each frame is rendered multiple times with different Cycles sample chunks, then combined'),
|
||||||
|
('blender-video-chunks', 'Video Chunks',
|
||||||
|
'Render each frame chunk to a video file, then concateate those video files')
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@@ -2,15 +2,15 @@
|
|||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
|
import pathlib
|
||||||
|
import re
|
||||||
import threading
|
import threading
|
||||||
import typing
|
import typing
|
||||||
import pathlib
|
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
from blender_asset_tracer import pack
|
from blender_asset_tracer import pack
|
||||||
from blender_asset_tracer.pack import progress, transfer
|
from blender_asset_tracer.pack import progress, transfer
|
||||||
|
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
_running_packer = None # type: pack.Packer
|
_running_packer = None # type: pack.Packer
|
||||||
@@ -97,7 +97,9 @@ async def copy(context,
|
|||||||
base_blendfile: pathlib.Path,
|
base_blendfile: pathlib.Path,
|
||||||
project: pathlib.Path,
|
project: pathlib.Path,
|
||||||
target: pathlib.Path,
|
target: pathlib.Path,
|
||||||
exclusion_filter: str) -> typing.Tuple[pathlib.Path, typing.Set[pathlib.Path]]:
|
exclusion_filter: str,
|
||||||
|
*,
|
||||||
|
relative_only: bool) -> typing.Tuple[pathlib.Path, typing.Set[pathlib.Path]]:
|
||||||
"""Use BAT🦇 to copy the given file and dependencies to the target location.
|
"""Use BAT🦇 to copy the given file and dependencies to the target location.
|
||||||
|
|
||||||
:raises: FileTransferError if a file couldn't be transferred.
|
:raises: FileTransferError if a file couldn't be transferred.
|
||||||
@@ -109,10 +111,15 @@ async def copy(context,
|
|||||||
|
|
||||||
wm = bpy.context.window_manager
|
wm = bpy.context.window_manager
|
||||||
|
|
||||||
with pack.Packer(base_blendfile, project, target) as packer:
|
with pack.Packer(base_blendfile, project, target, compress=True, relative_only=relative_only) \
|
||||||
|
as packer:
|
||||||
with _packer_lock:
|
with _packer_lock:
|
||||||
if exclusion_filter:
|
if exclusion_filter:
|
||||||
packer.exclude(*exclusion_filter.split())
|
# There was a mistake in an older version of the property tooltip,
|
||||||
|
# showing semicolon-separated instead of space-separated. We now
|
||||||
|
# just handle both.
|
||||||
|
filter_parts = re.split('[ ;]+', exclusion_filter.strip(' ;'))
|
||||||
|
packer.exclude(*filter_parts)
|
||||||
|
|
||||||
packer.progress_cb = BatProgress()
|
packer.progress_cb = BatProgress()
|
||||||
_running_packer = packer
|
_running_packer = packer
|
||||||
|
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
import contextlib
|
import contextlib
|
||||||
import logging
|
import logging
|
||||||
|
import typing
|
||||||
|
|
||||||
# Names of BlenderCloudPreferences properties that are both project-specific
|
# Names of BlenderCloudPreferences properties that are both project-specific
|
||||||
# and simple enough to store directly in a dict.
|
# and simple enough to store directly in a dict.
|
||||||
@@ -9,19 +10,53 @@ PROJECT_SPECIFIC_SIMPLE_PROPS = (
|
|||||||
'cloud_project_local_path',
|
'cloud_project_local_path',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Names of BlenderCloudPreferences properties that are project-specific and
|
||||||
|
# Flamenco Manager-specific, and simple enough to store in a dict.
|
||||||
|
FLAMENCO_PER_PROJECT_PER_MANAGER = (
|
||||||
|
'flamenco_exclude_filter',
|
||||||
|
'flamenco_job_file_path',
|
||||||
|
'flamenco_job_output_path',
|
||||||
|
'flamenco_job_output_strip_components',
|
||||||
|
'flamenco_relative_only',
|
||||||
|
)
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
project_settings_loading = False
|
project_settings_loading = 0 # counter, if > 0 then we're loading stuff.
|
||||||
|
|
||||||
|
|
||||||
@contextlib.contextmanager
|
@contextlib.contextmanager
|
||||||
def mark_as_loading():
|
def mark_as_loading():
|
||||||
"""Sets project_settings_loading=True while the context is active."""
|
"""Sets project_settings_loading > 0 while the context is active.
|
||||||
|
|
||||||
|
A counter is used to allow for nested mark_as_loading() contexts.
|
||||||
|
"""
|
||||||
global project_settings_loading
|
global project_settings_loading
|
||||||
project_settings_loading = True
|
project_settings_loading += 1
|
||||||
try:
|
try:
|
||||||
yield
|
yield
|
||||||
finally:
|
finally:
|
||||||
project_settings_loading = False
|
project_settings_loading -= 1
|
||||||
|
|
||||||
|
|
||||||
|
def update_preferences(prefs, names_to_update: typing.Iterable[str],
|
||||||
|
new_values: typing.Mapping[str, typing.Any]):
|
||||||
|
for name in names_to_update:
|
||||||
|
if not hasattr(prefs, name):
|
||||||
|
log.debug('not setting %r, property cannot be found', name)
|
||||||
|
continue
|
||||||
|
|
||||||
|
if name in new_values:
|
||||||
|
log.debug('setting %r = %r', name, new_values[name])
|
||||||
|
setattr(prefs, name, new_values[name])
|
||||||
|
else:
|
||||||
|
# The property wasn't stored, so set the default value instead.
|
||||||
|
bl_type, args = getattr(prefs.bl_rna, name)
|
||||||
|
log.debug('finding default value for %r', name)
|
||||||
|
if 'default' not in args:
|
||||||
|
log.debug('no default value for %r, not touching', name)
|
||||||
|
continue
|
||||||
|
log.debug('found default value for %r = %r', name, args['default'])
|
||||||
|
setattr(prefs, name, args['default'])
|
||||||
|
|
||||||
|
|
||||||
def handle_project_update(_=None, _2=None):
|
def handle_project_update(_=None, _2=None):
|
||||||
@@ -66,9 +101,7 @@ def handle_project_update(_=None, _2=None):
|
|||||||
log.debug('loading project-specific settings:\n%s', pformat(ps.to_dict()))
|
log.debug('loading project-specific settings:\n%s', pformat(ps.to_dict()))
|
||||||
|
|
||||||
# Restore simple properties.
|
# Restore simple properties.
|
||||||
for name in PROJECT_SPECIFIC_SIMPLE_PROPS:
|
update_preferences(prefs, PROJECT_SPECIFIC_SIMPLE_PROPS, ps)
|
||||||
if name in ps and hasattr(prefs, name):
|
|
||||||
setattr(prefs, name, ps[name])
|
|
||||||
|
|
||||||
# Restore Flamenco settings.
|
# Restore Flamenco settings.
|
||||||
prefs.flamenco_manager.available_managers = ps.get('flamenco_available_managers', [])
|
prefs.flamenco_manager.available_managers = ps.get('flamenco_available_managers', [])
|
||||||
@@ -76,20 +109,10 @@ def handle_project_update(_=None, _2=None):
|
|||||||
if flamenco_manager_id:
|
if flamenco_manager_id:
|
||||||
log.debug('setting flamenco manager to %s', flamenco_manager_id)
|
log.debug('setting flamenco manager to %s', flamenco_manager_id)
|
||||||
try:
|
try:
|
||||||
|
# This will trigger a load of Project+Manager-specfic settings.
|
||||||
prefs.flamenco_manager.manager = flamenco_manager_id
|
prefs.flamenco_manager.manager = flamenco_manager_id
|
||||||
except TypeError:
|
except TypeError:
|
||||||
log.warning('manager %s for this project could not be found', flamenco_manager_id)
|
log.warning('manager %s for this project could not be found', flamenco_manager_id)
|
||||||
else:
|
|
||||||
# Load per-project, per-manager settings for the current Manager.
|
|
||||||
try:
|
|
||||||
pppm = ps['flamenco_managers_settings'][flamenco_manager_id]
|
|
||||||
except KeyError:
|
|
||||||
# No settings for this manager, so nothing to do.
|
|
||||||
pass
|
|
||||||
else:
|
|
||||||
prefs.flamenco_job_file_path = pppm['file_path']
|
|
||||||
prefs.flamenco_job_output_path = pppm['output_path']
|
|
||||||
prefs.flamenco_job_output_strip_components = pppm['output_strip_components']
|
|
||||||
elif prefs.flamenco_manager.available_managers:
|
elif prefs.flamenco_manager.available_managers:
|
||||||
prefs.flamenco_manager.manager = prefs.flamenco_manager.available_managers[0]
|
prefs.flamenco_manager.manager = prefs.flamenco_manager.available_managers[0]
|
||||||
|
|
||||||
@@ -123,9 +146,8 @@ def store(_=None, _2=None):
|
|||||||
# Store per-project, per-manager settings for the current Manager.
|
# Store per-project, per-manager settings for the current Manager.
|
||||||
pppm = ps.get('flamenco_managers_settings', {})
|
pppm = ps.get('flamenco_managers_settings', {})
|
||||||
pppm[prefs.flamenco_manager.manager] = {
|
pppm[prefs.flamenco_manager.manager] = {
|
||||||
'file_path': prefs.flamenco_job_file_path,
|
name: getattr(prefs, name) for name in FLAMENCO_PER_PROJECT_PER_MANAGER
|
||||||
'output_path': prefs.flamenco_job_output_path,
|
}
|
||||||
'output_strip_components': prefs.flamenco_job_output_strip_components}
|
|
||||||
ps['flamenco_managers_settings'] = pppm # IDPropertyGroup has no setdefault() method.
|
ps['flamenco_managers_settings'] = pppm # IDPropertyGroup has no setdefault() method.
|
||||||
|
|
||||||
# Store this project's settings in the preferences.
|
# Store this project's settings in the preferences.
|
||||||
|
@@ -34,7 +34,7 @@ import asyncio
|
|||||||
import pillarsdk
|
import pillarsdk
|
||||||
from pillarsdk import exceptions as sdk_exceptions
|
from pillarsdk import exceptions as sdk_exceptions
|
||||||
from .pillar import pillar_call
|
from .pillar import pillar_call
|
||||||
from . import async_loop, pillar, cache, blendfile, home_project
|
from . import async_loop, blender, pillar, cache, blendfile, home_project
|
||||||
|
|
||||||
SETTINGS_FILES_TO_UPLOAD = ['userpref.blend', 'startup.blend']
|
SETTINGS_FILES_TO_UPLOAD = ['userpref.blend', 'startup.blend']
|
||||||
|
|
||||||
@@ -476,13 +476,13 @@ class PILLAR_OT_sync(pillar.PillarOperatorMixin,
|
|||||||
self.log.info('Overriding machine-local settings in %s', file_path)
|
self.log.info('Overriding machine-local settings in %s', file_path)
|
||||||
|
|
||||||
# Remember some settings that should not be overwritten from the Cloud.
|
# Remember some settings that should not be overwritten from the Cloud.
|
||||||
up = bpy.context.user_preferences
|
prefs = blender.ctx_preferences()
|
||||||
remembered = {}
|
remembered = {}
|
||||||
for rna_key, python_key in LOCAL_SETTINGS_RNA:
|
for rna_key, python_key in LOCAL_SETTINGS_RNA:
|
||||||
assert '.' in python_key, 'Sorry, this code assumes there is a dot in the Python key'
|
assert '.' in python_key, 'Sorry, this code assumes there is a dot in the Python key'
|
||||||
|
|
||||||
try:
|
try:
|
||||||
value = up.path_resolve(python_key)
|
value = prefs.path_resolve(python_key)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
# Setting doesn't exist. This can happen, for example Cycles
|
# Setting doesn't exist. This can happen, for example Cycles
|
||||||
# settings on a build that doesn't have Cycles enabled.
|
# settings on a build that doesn't have Cycles enabled.
|
||||||
@@ -491,7 +491,7 @@ class PILLAR_OT_sync(pillar.PillarOperatorMixin,
|
|||||||
# Map enums from strings (in Python) to ints (in DNA).
|
# Map enums from strings (in Python) to ints (in DNA).
|
||||||
dot_index = python_key.rindex('.')
|
dot_index = python_key.rindex('.')
|
||||||
parent_key, prop_key = python_key[:dot_index], python_key[dot_index + 1:]
|
parent_key, prop_key = python_key[:dot_index], python_key[dot_index + 1:]
|
||||||
parent = up.path_resolve(parent_key)
|
parent = prefs.path_resolve(parent_key)
|
||||||
prop = parent.bl_rna.properties[prop_key]
|
prop = parent.bl_rna.properties[prop_key]
|
||||||
if prop.type == 'ENUM':
|
if prop.type == 'ENUM':
|
||||||
log.debug('Rewriting %s from %r to %r',
|
log.debug('Rewriting %s from %r to %r',
|
||||||
|
@@ -244,7 +244,7 @@ class MenuItem:
|
|||||||
|
|
||||||
# draw some text
|
# draw some text
|
||||||
font_id = 0
|
font_id = 0
|
||||||
text_dpi = bpy.context.user_preferences.system.dpi
|
text_dpi = blender.ctx_preferences().system.dpi
|
||||||
text_x = self.x + self.icon_margin_x + ICON_WIDTH + self.text_margin_x
|
text_x = self.x + self.icon_margin_x + ICON_WIDTH + self.text_margin_x
|
||||||
text_y = self.y + ICON_HEIGHT * 0.5 - 0.25 * self.text_size
|
text_y = self.y + ICON_HEIGHT * 0.5 - 0.25 * self.text_size
|
||||||
blf.position(font_id, text_x, text_y, 0)
|
blf.position(font_id, text_x, text_y, 0)
|
||||||
|
@@ -16,6 +16,7 @@
|
|||||||
#
|
#
|
||||||
# ##### END GPL LICENSE BLOCK #####
|
# ##### END GPL LICENSE BLOCK #####
|
||||||
|
|
||||||
|
import json
|
||||||
import pathlib
|
import pathlib
|
||||||
|
|
||||||
|
|
||||||
@@ -102,3 +103,12 @@ def redraw(self, context):
|
|||||||
if context.area is None:
|
if context.area is None:
|
||||||
return
|
return
|
||||||
context.area.tag_redraw()
|
context.area.tag_redraw()
|
||||||
|
|
||||||
|
|
||||||
|
class JSONEncoder(json.JSONEncoder):
|
||||||
|
"""JSON encoder with support for some Blender types."""
|
||||||
|
|
||||||
|
def default(self, o):
|
||||||
|
if o.__class__.__name__ == 'IDPropertyGroup' and hasattr(o, 'to_dict'):
|
||||||
|
return o.to_dict()
|
||||||
|
return super().default(o)
|
||||||
|
13
deploy-to-shared.sh
Executable file
13
deploy-to-shared.sh
Executable file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash -e
|
||||||
|
|
||||||
|
FULLNAME="$(python3 setup.py --fullname)"
|
||||||
|
echo "Press [ENTER] to deploy $FULLNAME to /shared"
|
||||||
|
read dummy
|
||||||
|
|
||||||
|
./clear_wheels.sh
|
||||||
|
python3 setup.py wheels bdist
|
||||||
|
|
||||||
|
DISTDIR=$(pwd)/dist
|
||||||
|
cd /shared/software/addons
|
||||||
|
rm -vf blender_cloud/wheels/*.whl # remove obsolete wheel files
|
||||||
|
unzip -o $DISTDIR/$FULLNAME.addon.zip
|
@@ -1,9 +1,9 @@
|
|||||||
# Primary requirements:
|
# Primary requirements:
|
||||||
-e git+https://github.com/sybrenstuvel/cachecontrol.git@sybren-filecache-delete-crash-fix#egg=CacheControl
|
-e git+https://github.com/sybrenstuvel/cachecontrol.git@sybren-filecache-delete-crash-fix#egg=CacheControl
|
||||||
lockfile==0.12.2
|
lockfile==0.12.2
|
||||||
pillarsdk==1.6.1
|
pillarsdk==1.7.0
|
||||||
wheel==0.29.0
|
wheel==0.29.0
|
||||||
blender-asset-tracer>=0.4
|
blender-asset-tracer>=0.8
|
||||||
|
|
||||||
# Secondary requirements:
|
# Secondary requirements:
|
||||||
asn1crypto==0.24.0
|
asn1crypto==0.24.0
|
||||||
|
12
setup.py
12
setup.py
@@ -28,7 +28,7 @@ import zipfile
|
|||||||
from distutils import log
|
from distutils import log
|
||||||
from distutils.core import Command
|
from distutils.core import Command
|
||||||
from distutils.command.bdist import bdist
|
from distutils.command.bdist import bdist
|
||||||
from distutils.command.install import install
|
from distutils.command.install import install, INSTALL_SCHEMES
|
||||||
from distutils.command.install_egg_info import install_egg_info
|
from distutils.command.install_egg_info import install_egg_info
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
@@ -165,6 +165,14 @@ class BlenderAddonBdist(bdist):
|
|||||||
super().initialize_options()
|
super().initialize_options()
|
||||||
self.formats = ['zip']
|
self.formats = ['zip']
|
||||||
self.plat_name = 'addon' # use this instead of 'linux-x86_64' or similar.
|
self.plat_name = 'addon' # use this instead of 'linux-x86_64' or similar.
|
||||||
|
self.fix_local_prefix()
|
||||||
|
|
||||||
|
def fix_local_prefix(self):
|
||||||
|
"""Place data files in blender_cloud instead of local/blender_cloud."""
|
||||||
|
for key in INSTALL_SCHEMES:
|
||||||
|
if 'data' not in INSTALL_SCHEMES[key]:
|
||||||
|
continue
|
||||||
|
INSTALL_SCHEMES[key]['data'] = '$base'
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
self.run_command('wheels')
|
self.run_command('wheels')
|
||||||
@@ -228,7 +236,7 @@ setup(
|
|||||||
'wheels': BuildWheels},
|
'wheels': BuildWheels},
|
||||||
name='blender_cloud',
|
name='blender_cloud',
|
||||||
description='The Blender Cloud addon allows browsing the Blender Cloud from Blender.',
|
description='The Blender Cloud addon allows browsing the Blender Cloud from Blender.',
|
||||||
version='1.9.1',
|
version='1.10.0',
|
||||||
author='Sybren A. Stüvel',
|
author='Sybren A. Stüvel',
|
||||||
author_email='sybren@stuvel.eu',
|
author_email='sybren@stuvel.eu',
|
||||||
packages=find_packages('.'),
|
packages=find_packages('.'),
|
||||||
|
@@ -17,3 +17,6 @@ echo
|
|||||||
echo "Don't forget to commit and tag:"
|
echo "Don't forget to commit and tag:"
|
||||||
echo git commit -m \'Bumped version to $VERSION\' setup.py blender_cloud/__init__.py
|
echo git commit -m \'Bumped version to $VERSION\' setup.py blender_cloud/__init__.py
|
||||||
echo git tag -a version-$VERSION -m \'Tagged version $VERSION\'
|
echo git tag -a version-$VERSION -m \'Tagged version $VERSION\'
|
||||||
|
echo
|
||||||
|
echo "To build a distribution ZIP:"
|
||||||
|
echo python setup.py bdist
|
||||||
|
Reference in New Issue
Block a user