comparison frontends/src/bridge/DBus.py @ 361:141eeb7cd9e6

Quizz game: first draft
author Goffi <goffi@goffi.org>
date Sun, 12 Jun 2011 16:28:33 +0200
parents 6b5626c37909
children 208107419b17
comparison
equal deleted inserted replaced
360:6b5626c37909 361:141eeb7cd9e6
174 return self.db_comm_iface.tarotGameContratChoosed(player, referee, contrat, profile_key) 174 return self.db_comm_iface.tarotGameContratChoosed(player, referee, contrat, profile_key)
175 175
176 def tarotGamePlayCards(self, player, referee, cards, profile_key='@DEFAULT@'): 176 def tarotGamePlayCards(self, player, referee, cards, profile_key='@DEFAULT@'):
177 return self.db_comm_iface.tarotGamePlayCards(player, referee, cards, profile_key) 177 return self.db_comm_iface.tarotGamePlayCards(player, referee, cards, profile_key)
178 178
179 def quizGameLaunch(self, players, profile_key='@DEFAULT@'):
180 return self.db_comm_iface.quizGameLaunch(players, profile_key)
181
182 def quizGameCreate(self, room_jid, players, profile_key='@DEFAULT@'):
183 return self.db_comm_iface.quizGameCreate(room_jid, players, profile_key)
184
185 def quizGameReady(self, player, referee, profile_key='@DEFAULT@'):
186 return self.db_comm_iface.quizGameReady(player, referee, profile_key)
187
179 def sendFile(self, to, path, profile_key='@DEFAULT@'): 188 def sendFile(self, to, path, profile_key='@DEFAULT@'):
180 return self.db_comm_iface.sendFile(to, path, profile_key) 189 return self.db_comm_iface.sendFile(to, path, profile_key)
181 190
182 def findGateways(self, target, profile_key='@DEFAULT@'): 191 def findGateways(self, target, profile_key='@DEFAULT@'):
183 return self.db_comm_iface.findGateways(target, profile_key) 192 return self.db_comm_iface.findGateways(target, profile_key)