我正在尝试将kivy应用程序和高速公路wamp结合起来。 首先,我想创建一个最基本的应用程序,它将显示一个标签,并在发布命令时更改它。
这是我基本的kivy App:
class MyFrontendComponent(App):
def build(self):
root = self.setup_gui()
return root
def setup_gui(self):
self.label = Label(text='connecting...\n')
self.layout = BoxLayout(orientation='vertical')
self.layout.add_widget(self.label)
return self.layout
def changeLabel(self, text):
self.label.text = text
if __name__ == '__main__':
# Run the kivy app
kivyapp = MyFrontendComponent()
kivyapp.run()
以下是高速公路Wamp应如何实施: http://autobahn.ws/python/wamp/programming.html
from autobahn.twisted.wamp import ApplicationSession
from twisted.internet.defer import inlineCallbacks
class MyComponent(ApplicationSession):
@inlineCallbacks
def onJoin(self, details):
print("session ready")
def oncounter(count):
print("event received: {0}", count)
try:
yield self.subscribe(oncounter, u'com.myapp.oncounter')
print("subscribed to topic")
except Exception as e:
print("could not subscribe to topic: {0}".format(e))
由于kivy app主循环,我尝试使用使用Threads的autobahn.twisted.wamp应用程序,但它们没有得到同步
from autobahn.twisted.wamp import Application
app = Application()
@app.signal('onjoined')
def onjoined():
kivyapp.changeLabel("realm joined!")
你可以给出一个如何在它们之间进行组合的建议,因为我经常搜索没有结果。
答案 0 :(得分:0)
您需要使用Twisted support activated运行Kivy。
以下是complete example,演示了如何使用WAMP使用Crossbar.io来实现Kivy的实时消息传递。