2016-02-22 21:18:58 +00:00
|
|
|
# TODO: add all callbacks (replace test callbacks and use wrappers)
|
2016-02-22 15:55:04 +00:00
|
|
|
|
|
|
|
|
2016-02-22 21:18:58 +00:00
|
|
|
def self_connection_status(a, b, c):
|
2016-02-22 15:55:04 +00:00
|
|
|
print 'WOW, it works!'
|
2016-02-22 21:18:58 +00:00
|
|
|
print 'Status: ', str(b)
|
2016-02-22 15:55:04 +00:00
|
|
|
|
|
|
|
|
2016-02-22 21:18:58 +00:00
|
|
|
def friend_status(a, b, c, d):
|
|
|
|
print "Friend connected! Friend's data: ", str(a), str(b), str(c)
|
2016-02-22 15:55:04 +00:00
|
|
|
|
|
|
|
|
2016-02-22 21:18:58 +00:00
|
|
|
def friend_message(a, b, c, d, e, f):
|
|
|
|
print 'Message: ', unicode(d, "utf-8")
|
|
|
|
|
|
|
|
|
|
|
|
def init_callbacks(tox):
|
|
|
|
tox.callback_friend_status(friend_status, 0)
|
|
|
|
tox.callback_friend_message(friend_message, 0)
|
|
|
|
tox.callback_self_connection_status(self_connection_status, 0)
|