comparison src/bridge/bridge_constructor/dbus_frontend_template.py @ 361:141eeb7cd9e6

Quizz game: first draft
author Goffi <goffi@goffi.org>
date Sun, 12 Jun 2011 16:28:33 +0200
parents eb9d33ba4e36
children 54c77a56b22f
comparison
equal deleted inserted replaced
360:6b5626c37909 361:141eeb7cd9e6
79 return self.db_comm_iface.tarotGameContratChoosed(player, referee, contrat, profile_key) 79 return self.db_comm_iface.tarotGameContratChoosed(player, referee, contrat, profile_key)
80 80
81 def tarotGamePlayCards(self, player, referee, cards, profile_key='@DEFAULT@'): 81 def tarotGamePlayCards(self, player, referee, cards, profile_key='@DEFAULT@'):
82 return self.db_comm_iface.tarotGamePlayCards(player, referee, cards, profile_key) 82 return self.db_comm_iface.tarotGamePlayCards(player, referee, cards, profile_key)
83 83
84 def quizGameLaunch(self, players, profile_key='@DEFAULT@'):
85 return self.db_comm_iface.quizGameLaunch(players, profile_key)
86
87 def quizGameCreate(self, room_jid, players, profile_key='@DEFAULT@'):
88 return self.db_comm_iface.quizGameCreate(room_jid, players, profile_key)
89
90 def quizGameReady(self, player, referee, profile_key='@DEFAULT@'):
91 return self.db_comm_iface.quizGameReady(player, referee, profile_key)
92
84 def sendFile(self, to, path, profile_key='@DEFAULT@'): 93 def sendFile(self, to, path, profile_key='@DEFAULT@'):
85 return self.db_comm_iface.sendFile(to, path, profile_key) 94 return self.db_comm_iface.sendFile(to, path, profile_key)
86 95
87 def findGateways(self, target, profile_key='@DEFAULT@'): 96 def findGateways(self, target, profile_key='@DEFAULT@'):
88 return self.db_comm_iface.findGateways(target, profile_key) 97 return self.db_comm_iface.findGateways(target, profile_key)