comparison frontends/sat_bridge_frontend/DBus.py @ 92:2503de7fb4c7

Tarot game: chien/écart stage - tarot plugin: new methods/signals tarotGamePlayCards, tarotGameShowCards, tarotGameYourTurn - tarot plugin: protocole update - tarot plugin: family renamed in suit - wix: card_game: card can be selected for écart, card move when mouse is over only if it's our turn
author Goffi <goffi@goffi.org>
date Sat, 29 May 2010 20:53:03 +0930
parents 39c672544593
children 783e9d6980ec
comparison
equal deleted inserted replaced
91:39c672544593 92:2503de7fb4c7
120 return self.db_comm_iface.joinMUC(service, roomId, nick, profile_key) 120 return self.db_comm_iface.joinMUC(service, roomId, nick, profile_key)
121 121
122 def tarotGameCreate(self, room_jid, players, profile_key='@DEFAULT@'): 122 def tarotGameCreate(self, room_jid, players, profile_key='@DEFAULT@'):
123 return self.db_comm_iface.tarotGameCreate(room_jid, players, profile_key) 123 return self.db_comm_iface.tarotGameCreate(room_jid, players, profile_key)
124 124
125 def tarotGameReady(self, user, referee, profile_key='@DEFAULT@'): 125 def tarotGameReady(self, player, referee, profile_key='@DEFAULT@'):
126 return self.db_comm_iface.tarotGameReady(user, referee, profile_key) 126 return self.db_comm_iface.tarotGameReady(player, referee, profile_key)
127 127
128 def tarotGameContratChoosed(self, user, referee, contrat, profile_key='@DEFAULT@'): 128 def tarotGameContratChoosed(self, player, referee, contrat, profile_key='@DEFAULT@'):
129 return self.db_comm_iface.tarotGameContratChoosed(user, referee, contrat, profile_key) 129 return self.db_comm_iface.tarotGameContratChoosed(player, referee, contrat, profile_key)
130
131 def tarotGamePlayCards(self, player, referee, cards, profile_key='@DEFAULT@'):
132 return self.db_comm_iface.tarotGamePlayCards(player, referee, cards, profile_key)
130 133
131 def sendFile(self, to, path, profile_key='@DEFAULT@'): 134 def sendFile(self, to, path, profile_key='@DEFAULT@'):
132 return self.db_comm_iface.sendFile(to, path, profile_key) 135 return self.db_comm_iface.sendFile(to, path, profile_key)
133 136
134 def findGateways(self, target, profile_key='@DEFAULT@'): 137 def findGateways(self, target, profile_key='@DEFAULT@'):