2019-08-14 00:00:54 +08:00
|
|
|
import bpy
|
2019-08-28 18:57:09 +08:00
|
|
|
import logging
|
2019-08-23 18:28:57 +08:00
|
|
|
|
2019-09-16 17:42:53 +08:00
|
|
|
from . import operators, utils, presence
|
2019-08-14 03:32:15 +08:00
|
|
|
from .bl_types.bl_user import BlUser
|
2019-09-24 20:42:59 +08:00
|
|
|
from .libs.replication.replication.constants import FETCHED, RP_COMMON
|
2019-08-23 18:28:57 +08:00
|
|
|
|
2019-08-28 18:57:09 +08:00
|
|
|
logger = logging.getLogger(__name__)
|
2019-08-14 00:00:54 +08:00
|
|
|
|
|
|
|
class Delayable():
|
2019-08-14 21:01:30 +08:00
|
|
|
"""Delayable task interface
|
|
|
|
"""
|
2019-08-23 18:28:57 +08:00
|
|
|
|
2019-08-14 00:00:54 +08:00
|
|
|
def register(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def unregister(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2019-08-23 18:28:57 +08:00
|
|
|
|
2019-08-14 00:00:54 +08:00
|
|
|
class Timer(Delayable):
|
|
|
|
"""Timer binder interface for blender
|
|
|
|
|
|
|
|
Run a bpy.app.Timer in the background looping at the given rate
|
|
|
|
"""
|
2019-08-23 18:28:57 +08:00
|
|
|
|
2019-08-14 00:00:54 +08:00
|
|
|
def __init__(self, duration=1):
|
|
|
|
self._timeout = duration
|
|
|
|
|
|
|
|
def register(self):
|
|
|
|
"""Register the timer into the blender timer system
|
|
|
|
"""
|
|
|
|
bpy.app.timers.register(self.execute)
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
"""Main timer loop
|
|
|
|
"""
|
|
|
|
return self._timeout
|
|
|
|
|
|
|
|
def unregister(self):
|
|
|
|
"""Unnegister the timer of the blender timer system
|
|
|
|
"""
|
2019-08-14 03:32:15 +08:00
|
|
|
try:
|
|
|
|
bpy.app.timers.unregister(self.execute)
|
|
|
|
except:
|
2019-08-28 18:57:09 +08:00
|
|
|
logger.error("timer already unregistered")
|
2019-08-14 00:00:54 +08:00
|
|
|
|
2019-08-23 18:28:57 +08:00
|
|
|
|
2019-08-14 00:00:54 +08:00
|
|
|
class ApplyTimer(Timer):
|
2019-08-23 18:28:57 +08:00
|
|
|
def __init__(self, timout=1, target_type=None):
|
2019-08-14 00:00:54 +08:00
|
|
|
self._type = target_type
|
|
|
|
super().__init__(timout)
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
if operators.client:
|
|
|
|
nodes = operators.client.list(filter=self._type)
|
|
|
|
|
|
|
|
for node in nodes:
|
2019-08-26 23:27:12 +08:00
|
|
|
node_ref = operators.client.get(uuid=node)
|
2019-08-14 00:00:54 +08:00
|
|
|
|
|
|
|
if node_ref.state == FETCHED:
|
|
|
|
operators.client.apply(uuid=node)
|
|
|
|
|
|
|
|
return self._timeout
|
|
|
|
|
2019-09-19 05:55:30 +08:00
|
|
|
class DynamicRightSelectTimer(Timer):
|
|
|
|
def __init__(self, timout=1):
|
|
|
|
super().__init__(timout)
|
|
|
|
self.last_selection=[]
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
if operators.client:
|
|
|
|
users = operators.client.list(filter=BlUser)
|
|
|
|
|
|
|
|
for user in users:
|
|
|
|
user_ref = operators.client.get(uuid=user)
|
|
|
|
settings = bpy.context.window_manager.session
|
|
|
|
|
|
|
|
if user_ref.buffer['name'] != settings.username:
|
|
|
|
for obj in bpy.data.objects:
|
|
|
|
obj.hide_select = obj.name in user_ref.buffer['selected_objects']
|
|
|
|
elif user_ref.pointer:
|
2019-09-19 15:57:14 +08:00
|
|
|
current_selection = utils.get_selected_objects(bpy.context.scene)
|
|
|
|
if current_selection != self.last_selection:
|
|
|
|
user_ref.pointer.update_selected_objects(bpy.context)
|
2019-09-19 19:02:39 +08:00
|
|
|
|
2019-09-25 00:37:36 +08:00
|
|
|
if operators.client.get_config()['right_strategy'] == 'COMMON':
|
2019-09-21 05:58:57 +08:00
|
|
|
obj_common = [o for o in self.last_selection if o not in current_selection]
|
|
|
|
obj_ours = [o for o in current_selection if o not in self.last_selection]
|
|
|
|
|
|
|
|
for obj in obj_common:
|
|
|
|
node = operators.client.get(reference=bpy.data.objects[obj])
|
|
|
|
if node:
|
|
|
|
node.owner = settings.username
|
2019-09-24 20:42:59 +08:00
|
|
|
operators.client.change_owner(node.uuid, RP_COMMON)
|
2019-09-21 05:58:57 +08:00
|
|
|
|
2019-09-19 19:02:39 +08:00
|
|
|
# update our rights
|
2019-09-21 05:58:57 +08:00
|
|
|
for obj in obj_ours:
|
|
|
|
node = operators.client.get(reference=bpy.data.objects[obj])
|
2019-09-19 19:02:39 +08:00
|
|
|
if node:
|
|
|
|
node.owner = settings.username
|
|
|
|
operators.client.change_owner(node.uuid, settings.username)
|
2019-09-21 05:58:57 +08:00
|
|
|
self.last_selection = current_selection
|
2019-09-19 05:55:30 +08:00
|
|
|
return self._timeout
|
|
|
|
|
2019-08-26 23:27:12 +08:00
|
|
|
# class CheckNewTimer(Timer):
|
|
|
|
|
2019-09-16 17:42:53 +08:00
|
|
|
class RedrawTimer(Timer):
|
|
|
|
def __init__(self, timout=1, target_type=None):
|
|
|
|
self._type = target_type
|
|
|
|
super().__init__(timout)
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
if presence.renderer:
|
|
|
|
presence.refresh_3d_view()
|
|
|
|
|
|
|
|
return self._timeout
|
2019-08-23 18:28:57 +08:00
|
|
|
|
2019-08-14 00:00:54 +08:00
|
|
|
class Draw(Delayable):
|
|
|
|
def __init__(self):
|
|
|
|
self._handler = None
|
|
|
|
|
|
|
|
def register(self):
|
|
|
|
self._handler = bpy.types.SpaceView3D.draw_handler_add(
|
2019-08-23 18:28:57 +08:00
|
|
|
self.execute, (), 'WINDOW', 'POST_VIEW')
|
|
|
|
|
2019-08-14 00:00:54 +08:00
|
|
|
def execute(self):
|
|
|
|
raise NotImplementedError()
|
2019-08-23 18:28:57 +08:00
|
|
|
|
2019-08-14 00:00:54 +08:00
|
|
|
def unregister(self):
|
2019-08-14 03:32:15 +08:00
|
|
|
try:
|
|
|
|
bpy.types.SpaceView3D.draw_handler_remove(
|
2019-08-23 18:28:57 +08:00
|
|
|
self._handler, "WINDOW")
|
2019-08-14 03:32:15 +08:00
|
|
|
except:
|
2019-08-28 18:57:09 +08:00
|
|
|
logger.error("draw already unregistered")
|
2019-08-23 18:28:57 +08:00
|
|
|
|
|
|
|
|
2019-08-14 00:00:54 +08:00
|
|
|
class ClientUpdate(Draw):
|
|
|
|
def __init__(self, client_uuid=None):
|
|
|
|
assert(client_uuid)
|
|
|
|
self._client_uuid = client_uuid
|
|
|
|
super().__init__()
|
|
|
|
|
|
|
|
def execute(self):
|
2019-08-26 23:59:36 +08:00
|
|
|
if self._client_uuid and operators.client:
|
2019-08-26 23:27:12 +08:00
|
|
|
client = operators.client.get(uuid=self._client_uuid)
|
2019-08-14 03:32:15 +08:00
|
|
|
|
|
|
|
if client:
|
|
|
|
client.pointer.update_location()
|