ToorChat/toorchat.py

80 lines
2.0 KiB
Python
Raw Normal View History

2012-10-20 22:38:28 +00:00
#!/usr/bin/env python
import sys
from rflib import *
import rflib.chipcon_nic as rfnic
import atexit
from libtoorchat import *
2012-10-21 03:21:22 +00:00
from os import system
import curses
import time
from threading import Thread
2012-10-20 22:38:28 +00:00
2012-10-21 03:21:22 +00:00
def thread_run(visual):
''' This is our function for the thread '''
#Thread should run until exit
while not visual.exit:
2012-10-20 22:38:28 +00:00
try:
2012-10-21 03:21:22 +00:00
msg, timestamp = visual.badge.RFrecv()
visual.message_queue.append(msg)
2012-10-20 22:38:28 +00:00
except ChipconUsbTimeoutException:
pass
2012-10-21 03:21:22 +00:00
class Visualizer():
def __init__(self):
self.screen = curses.initscr()
# curses.noecho()
# curses.cbreak()
self.screen.nodelay(1)
self.badge = RfCat(idx=0)
self.badge.setModeRX()
self.protocol = ToorChatProtocol(self.badge)
self.message_queue = []
#This when set to True will kill the thread
self.exit = False
def start(self):
self.__start_recv_thread__()
self.__run__()
def __start_recv_thread__(self):
'''This spins off a thread to deal with recving information from the rf device '''
self.thread = Thread(target=thread_run, args=(self,))
self.thread.start()
def __run__(self):
try:
self.screen_max_y, self.screen_max_x = self.screen.getmaxyx()
self.__draw_frame__()
self.screen.refresh()
while True:
self.screen_max_y, self.screen_max_x = self.screen.getmaxyx()
self.screen.addstr(0, 1, "[S] Send Message ")
self.screen.addstr(3,1,"Count:" + str(len(self.message_queue)))
entry = self.screen.getch()
if entry == curses.KEY_RESIZE:
self.__draw_frame__()
if entry == ord('s'):
self.screen.nodelay(0)
2012-10-21 03:24:44 +00:00
user_input = self.screen.getstr(1, 1, 60)
self.protocol.send_message(user_input)
2012-10-21 03:21:22 +00:00
self.screen.nodelay(1)
self.__draw_frame__()
self.screen.refresh()
except KeyboardInterrupt:
self.exit = True
self.stop()
def __draw_frame__(self):
self.screen.clear()
self.screen.border(0)
self.screen.addstr(2,1,"_"*(self.screen_max_x-2))
def stop(self):
curses.endwin()
2012-10-20 22:38:28 +00:00
if __name__ == '__main__':
2012-10-21 03:21:22 +00:00
visual = Visualizer()
visual.start()