multi-user/net_ui.py
Swann 414cf1fc73
feat(ui refresh): Added an optionnal callback recv message function
docs(imgs): Added 2 video capture for perenity
2019-02-12 10:18:39 +01:00

60 lines
1.6 KiB
Python

import bpy
from . import net_components
from . import net_operators
class SessionPanel(bpy.types.Panel):
"""Creates a Panel in the scene context of the properties editor"""
bl_label = "Net Session"
bl_idname = "SCENE_PT_layout"
bl_space_type = 'PROPERTIES'
bl_region_type = 'WINDOW'
bl_context = "scene"
# def draw_header(self, context):
# self.layout.prop(context.scene.session_settings, "username", text="")
def draw(self, context):
layout = self.layout
scene = context.scene
# Create a simple row.
row = layout.row()
if net_operators.client:
row.operator("session.stop")
row = layout.row()
row = layout.row(align=True)
row.prop(scene,"message",text="")
row.operator("session.send").message = scene.message
row = layout.row()
# Debug area
row = layout.row()
area_msg = row.box()
if len(net_operators.client.store) > 0:
for (id,msg) in net_operators.client.store:
area_msg.label(text="{}:{}".format(id,msg))
else:
area_msg.label(text="Empty")
else:
row = layout.row()
row.prop(scene.session_settings,"username",text="")
row = layout.row()
row.operator("session.join")
row.operator("session.create")
classes = (
SessionPanel,
)
register, unregister = bpy.utils.register_classes_factory(classes)
if __name__ == "__main__":
register()