2019-08-28 18:57:09 +08:00
|
|
|
import logging
|
2019-08-23 18:28:57 +08:00
|
|
|
|
2019-09-30 19:35:50 +08:00
|
|
|
import bpy
|
|
|
|
|
|
|
|
from . import operators, presence, utils
|
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
|
|
|
|
2019-09-27 20:50:00 +08:00
|
|
|
|
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
|
2019-09-27 20:50:00 +08:00
|
|
|
self._running = True
|
2019-08-14 00:00:54 +08:00
|
|
|
|
|
|
|
def register(self):
|
|
|
|
"""Register the timer into the blender timer system
|
|
|
|
"""
|
2019-09-27 20:50:00 +08:00
|
|
|
bpy.app.timers.register(self.main)
|
|
|
|
|
|
|
|
def main(self):
|
|
|
|
self.execute()
|
2019-08-14 00:00:54 +08:00
|
|
|
|
2019-09-27 20:50:00 +08:00
|
|
|
if self._running:
|
|
|
|
return self._timeout
|
|
|
|
|
2019-08-14 00:00:54 +08:00
|
|
|
def execute(self):
|
|
|
|
"""Main timer loop
|
|
|
|
"""
|
2019-09-27 20:50:00 +08:00
|
|
|
raise NotImplementedError
|
2019-08-14 00:00:54 +08:00
|
|
|
|
|
|
|
def unregister(self):
|
|
|
|
"""Unnegister the timer of the blender timer system
|
|
|
|
"""
|
2019-09-27 20:50:00 +08:00
|
|
|
if bpy.app.timers.is_registered(self.main):
|
|
|
|
bpy.app.timers.unregister(self.main)
|
2019-08-14 00:00:54 +08:00
|
|
|
|
2019-09-27 20:50:00 +08:00
|
|
|
self._running = False
|
2019-08-23 18:28:57 +08:00
|
|
|
|
2019-09-30 19:35:50 +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:
|
2019-10-04 00:30:46 +08:00
|
|
|
try:
|
|
|
|
operators.client.apply(node)
|
2019-10-14 19:08:31 +08:00
|
|
|
except Exception as e:
|
2019-11-23 01:32:39 +08:00
|
|
|
logger.error(
|
|
|
|
"fail to apply {}: {}".format(node_ref.uuid, e))
|
2019-08-14 00:00:54 +08:00
|
|
|
|
|
|
|
|
2019-09-19 05:55:30 +08:00
|
|
|
class DynamicRightSelectTimer(Timer):
|
2019-10-02 20:01:45 +08:00
|
|
|
def __init__(self, timout=.1):
|
2019-09-19 05:55:30 +08:00
|
|
|
super().__init__(timout)
|
2019-11-23 01:32:39 +08:00
|
|
|
self._last_selection = []
|
|
|
|
self._user = None
|
|
|
|
self._user_node = None
|
|
|
|
self._right_strategy = RP_COMMON
|
2019-09-19 05:55:30 +08:00
|
|
|
|
|
|
|
def execute(self):
|
2019-11-23 01:32:39 +08:00
|
|
|
repo = operators.client
|
|
|
|
if repo:
|
|
|
|
settings = bpy.context.window_manager.session
|
|
|
|
|
|
|
|
# Find user
|
|
|
|
if self._user is None:
|
|
|
|
users = repo.list(filter=BlUser)
|
|
|
|
|
|
|
|
for user in users:
|
|
|
|
user_node = repo.get(uuid=user)
|
|
|
|
if user_node.pointer:
|
|
|
|
self._user = user_node.pointer
|
|
|
|
self._user_node = user_node
|
|
|
|
|
|
|
|
if self._right_strategy is None:
|
|
|
|
self._right_strategy = repo.get_config()[
|
|
|
|
'right_strategy']
|
|
|
|
|
|
|
|
if self._user:
|
|
|
|
current_selection = utils.get_selected_objects(
|
|
|
|
bpy.context.scene)
|
|
|
|
if current_selection != self._last_selection:
|
|
|
|
if self._right_strategy == RP_COMMON:
|
|
|
|
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]
|
|
|
|
|
|
|
|
# change old selection right to common
|
|
|
|
for obj in obj_common:
|
|
|
|
node = repo.get(uuid=obj)
|
|
|
|
|
|
|
|
if node and (node.owner == settings.username or node.owner == RP_COMMON):
|
|
|
|
recursive = True
|
|
|
|
if node.data and 'instance_type' in node.data.keys():
|
|
|
|
recursive = node.data['instance_type'] != 'COLLECTION'
|
|
|
|
repo.change_owner(
|
|
|
|
node.uuid,
|
|
|
|
RP_COMMON,
|
|
|
|
recursive=recursive)
|
|
|
|
|
|
|
|
# change new selection to our
|
|
|
|
for obj in obj_ours:
|
|
|
|
node = repo.get(uuid=obj)
|
|
|
|
|
|
|
|
if node and node.owner == RP_COMMON:
|
|
|
|
recursive = True
|
|
|
|
if node.data and 'instance_type' in node.data.keys():
|
|
|
|
recursive = node.data['instance_type'] != 'COLLECTION'
|
|
|
|
|
|
|
|
repo.change_owner(
|
|
|
|
node.uuid,
|
|
|
|
settings.username,
|
|
|
|
recursive=recursive)
|
|
|
|
else:
|
|
|
|
return
|
2020-01-22 06:24:44 +08:00
|
|
|
|
2019-11-23 01:32:39 +08:00
|
|
|
self._last_selection = current_selection
|
|
|
|
self._user.update_selected_objects(
|
|
|
|
bpy.context)
|
2020-01-22 06:24:44 +08:00
|
|
|
repo.push(self._user_node.uuid)
|
2019-11-23 01:32:39 +08:00
|
|
|
|
|
|
|
# Fix deselection until right managment refactoring (with Roles concepts)
|
|
|
|
if len(current_selection) == 0 and self._right_strategy == RP_COMMON:
|
2020-01-22 06:24:44 +08:00
|
|
|
owned_keys = repo.list(
|
|
|
|
filter_owner=settings.username)
|
2019-11-23 01:32:39 +08:00
|
|
|
for key in owned_keys:
|
2020-01-22 06:24:44 +08:00
|
|
|
node = repo.get(uuid=key)
|
2019-11-23 01:32:39 +08:00
|
|
|
if not isinstance(node, BlUser):
|
|
|
|
repo.change_owner(
|
2020-01-22 06:24:44 +08:00
|
|
|
key,
|
|
|
|
RP_COMMON,
|
|
|
|
recursive=recursive)
|
2019-08-23 18:28:57 +08:00
|
|
|
|
2019-10-14 19:08:31 +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-10-02 20:01:45 +08:00
|
|
|
class DrawClient(Draw):
|
|
|
|
def execute(self):
|
2020-01-22 06:24:44 +08:00
|
|
|
session = operators.client
|
|
|
|
if session and presence.renderer:
|
2019-10-02 20:01:45 +08:00
|
|
|
settings = bpy.context.window_manager.session
|
2020-01-22 06:24:44 +08:00
|
|
|
users = session.online_users
|
|
|
|
|
|
|
|
for user in users.values():
|
|
|
|
metadata = user.get('metadata')
|
2019-10-02 20:01:45 +08:00
|
|
|
|
2020-01-22 06:24:44 +08:00
|
|
|
# if settings.presence_show_selected:
|
|
|
|
# presence.renderer.draw_client_selection(
|
|
|
|
# cli_ref.data['name'], cli_ref.data['color'], cli_ref.data['selected_objects'])
|
|
|
|
if settings.presence_show_user:
|
|
|
|
presence.renderer.draw_client_camera(
|
|
|
|
user['id'], metadata['view_corners'], metadata['color'])
|
2019-10-02 20:01:45 +08:00
|
|
|
|
|
|
|
|
2019-10-03 19:23:59 +08:00
|
|
|
class ClientUpdate(Timer):
|
|
|
|
def __init__(self, timout=1, client_uuid=None):
|
2019-08-14 00:00:54 +08:00
|
|
|
assert(client_uuid)
|
|
|
|
self._client_uuid = client_uuid
|
2019-10-03 19:23:59 +08:00
|
|
|
super().__init__(timout)
|
2019-08-14 00:00:54 +08:00
|
|
|
|
|
|
|
def execute(self):
|
2020-01-22 06:24:44 +08:00
|
|
|
settings = bpy.context.window_manager.session
|
|
|
|
session_info = bpy.context.window_manager.session
|
|
|
|
session = operators.client
|
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)
|
2020-01-22 06:24:44 +08:00
|
|
|
local_user = operators.client.online_users[session_info.username]
|
2019-08-14 03:32:15 +08:00
|
|
|
|
2020-01-22 06:24:44 +08:00
|
|
|
metadata = {
|
|
|
|
'view_corners': presence.get_view_corners(),
|
|
|
|
'view_matrix': presence.get_view_matrix(),
|
|
|
|
'color': (settings.client_color.r,
|
|
|
|
settings.client_color.g,
|
|
|
|
settings.client_color.b,
|
|
|
|
1),
|
|
|
|
'selected_objects':utils.get_selected_objects(bpy.context.scene)
|
|
|
|
}
|
|
|
|
|
|
|
|
session.update_user_metadata(metadata)
|
|
|
|
|
|
|
|
logger.info("{}".format(local_user))
|
2019-08-14 03:32:15 +08:00
|
|
|
if client:
|
|
|
|
client.pointer.update_location()
|
2020-01-22 06:24:44 +08:00
|
|
|
|
2020-01-21 01:55:03 +08:00
|
|
|
# sync online users
|
|
|
|
session_users = operators.client.online_users
|
|
|
|
ui_users = bpy.context.window_manager.online_users
|
|
|
|
|
|
|
|
for index, user in enumerate(ui_users):
|
|
|
|
if user.username not in session_users.keys():
|
|
|
|
ui_users.remove(index)
|
|
|
|
bpy.context.window_manager.session.presence_show_user = False
|
|
|
|
bpy.context.window_manager.session.presence_show_user = True
|
|
|
|
presence.refresh_3d_view()
|
|
|
|
break
|
|
|
|
|
|
|
|
for user in session_users:
|
|
|
|
if user not in ui_users:
|
|
|
|
new_key = ui_users.add()
|
|
|
|
new_key.name = user
|
2020-01-22 06:24:44 +08:00
|
|
|
new_key.username = user
|