Advertisement
CastleMan2000

PeerChat (WIP)

Apr 21st, 2014
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.57 KB | None | 0 0
  1. local peerChatGraphic = "##########################\n#        Peer Chat       #\n##########################"
  2.  
  3. peerchat = {
  4.   logo = function()
  5.     write(peerChatGraphic)
  6.   end,
  7.  
  8.   init = function()
  9.     term.clear()
  10.     rednet.open("back")
  11.     rednet.host("PeerChat","Peer"..os.getComputerID())
  12.     term.setCursorPos(1,1)
  13.     peerchat.logo()
  14.   end,
  15.  
  16.   printNearby = function()
  17.     local nearby = {rednet.lookup("PeerChat")}
  18.     for i,v in ipairs(nearby) do
  19.       write(v..", ")
  20.     end
  21.   end,
  22.  
  23.   send = function(message)
  24.     rednet.broadcast(message, "PeerChat")
  25.     print(os.getComputerID().."> "..message)
  26.   end,
  27.  
  28.   sendStuff = function()
  29.     local event, param1 = os.pullEvent("char")
  30.     if param1 == "t" then
  31.       local oldX, oldY = term.getCursorPos()
  32.       local x,y = term.getSize()
  33.       term.setCursorPos(1,y)
  34.       local message = read()
  35.       term.setCursorPos(1,oldY)
  36.       peerchat.send(message)
  37.     end
  38.   end,
  39.  
  40.   get = function()
  41.     local id, message = rednet.receive("PeerChat")
  42.     local oldX, oldY = term.getCursorPos()
  43.     if message ~= nil then
  44.       print(tostring(id).."> "..message)
  45.     end
  46.     term.setCursorPos(oldX,oldY)
  47.   end,
  48.  
  49.   finish = function()
  50.     rednet.unhost("PeerChat","Peer"..os.getComputerID())
  51.   end,
  52.  
  53.   mainLoop = function()
  54.     while true do
  55.       parallel.waitForAny(peerchat.get, peerchat.sendStuff)
  56.     end
  57.   end
  58. }
  59.  
  60. peerchat.init()
  61. print("Press 'T' to talk!")
  62. print("Your ID: "..os.getComputerID())
  63. print("Currently connected peers:")
  64. peerchat.printNearby()
  65. print("")
  66. peerchat.mainLoop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement