Advertisement
Imgoodisher

Cleverbot talking to itself

Mar 2nd, 2013
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.69 KB | None | 0 0
  1. local playerfilter = "."
  2.  
  3. --  
  4. --  CCleverBot
  5. --  Made by 1lann and GravityScore
  6. --  
  7.  
  8.  
  9. --  Variables
  10.  
  11. local version = "1.0"
  12.  
  13. local responseURL = "http://firewolf.dyndns.org:8080/ccleverbot/response.php"
  14. local event_updateChat = "ccleverbot_updateChatEvent"
  15. local event_continue = "ccleverbot_continueEvent"
  16. local event_exit = "ccleverbot_exitEvent"
  17.  
  18. local chatHistory = {}
  19. local chatLog = {}
  20. local w, h = term.getSize()
  21.  
  22. --  Drawing
  23.  
  24. local function centerPrint(text, y)
  25.     if type(text) == "table" then for _, v in pairs(text) do centerPrint(v) end
  26.     else
  27.         local x, y = term.getCursorPos()
  28.         term.setCursorPos((w + 2)/2 - text:len()/2, ny or y)
  29.         print(text)
  30.     end
  31. end
  32.  
  33. local function drawChat(chatData, offset, thinking)
  34.     local a, b = false, false
  35.     for i = 1, 10 do
  36.         term.setCursorPos(3, 16 - i)
  37.         term.clearLine()
  38.     end
  39.  
  40.     for i = 1, 10 do
  41.         local c = chatData[#chatData + 1 - i + offset]
  42.  
  43.         if #chatData + 1 - i + offset < 1 then break end
  44.         term.setCursorPos(3, 16 - i)
  45.  
  46.         if thinking and i == 1 then
  47.             term.setTextColor(colors.lightGray)
  48.             write("...")
  49.             offset = offset + 1
  50.         else
  51. --[[
  52.             if not pcall(function() if c[1] == "trains" then end end) then
  53.                 write(#chatData + 1 - i + offset)
  54.                 error()
  55.             end
  56. ]]--
  57.  
  58.             if c[2] == "user" then
  59.                 term.setTextColor(colors.black)
  60.                 write(c[1])
  61.             else
  62.                 term.setTextColor(colors.lightBlue)
  63.                 if i == 1 and offset == 0 then
  64.                     a = true
  65.                 elseif i == 2 and offset == 0 then
  66.                     b = true
  67.                 else
  68.                     write(c[1])
  69.                 end
  70.             end
  71.         end
  72.     end
  73.  
  74.     if a then
  75.         term.setTextColor(colors.lightBlue)
  76.         if b then
  77.             term.setCursorPos(3, 14)
  78.             print(chatData[#chatData - 1][1])
  79.         end
  80.  
  81.         term.setCursorPos(3, 15)
  82.      print(chatData[#chatData][1])
  83.     end
  84.  
  85.  if not thinking and chatData[#chatData][2] ~= "user" then
  86.    local str = ""
  87.    for i=#chatData, 1, -1 do
  88.      if chatData[i][2] ~= "user" then
  89.        str = chatData[i][1]..str
  90.      else
  91.        break
  92.      end
  93.    end
  94.    --peripheral.call("right", "say", str)
  95.  end
  96.     os.queueEvent(event_continue)
  97. end
  98.  
  99.  
  100. --  Interface
  101.  
  102. local function interface()
  103.     local scrollPos = 0
  104.     local updateChatLog = nil
  105.     while true do
  106.         local e, p1, p2 = os.pullEvent()
  107.         if e == event_updateChat then
  108.             updateChatLog = textutils.unserialize(p1)
  109.             scrollPos = 0
  110.             drawChat(updateChatLog, 0, p2)
  111.         elseif e == event_exit then
  112.             return
  113. --[[
  114.         elseif e == "mouse_scroll" then
  115.             if not(scrollPos + p1 < 0) and updateChatLog then
  116.                 if #updateChatLog > 10 and #updateChatLog > ((scrollPos + p1) * -1) then
  117.                     scrollPos = scrollPos+p1
  118.                     local x, y = term.getCursorPos()
  119.                     drawChat(updateChatLog, scrollPos)
  120.                     term.setCursorPos(x, y)
  121.                 end
  122.             end
  123. ]]--
  124.         end
  125.     end
  126. end
  127.  
  128.  
  129. --  Input
  130. local lastdata = "Hello."
  131. local function input()
  132.     while true do
  133.         -- Read
  134.         term.setCursorPos(3, 17)
  135.         term.setTextColor(colors.gray)
  136.         term.clearLine()
  137.         write("> ")
  138.         --while true do
  139.         --  local chatEvent = {os.pullEvent("chat")}
  140.         --  if string.find(chatEvent[3], "^!") and string.find(chatEvent[2], playerfilter) then
  141.         --      _inputData = string.sub(chatEvent[3], 2)
  142.         --      break
  143.         --  end
  144.         --end
  145.         local response = http.post(responseURL, "input=" .. textutils.urlEncode(lastdata))
  146.         if response then _inputData = response:readAll() end
  147.        
  148.         local inputData = _inputData:gsub("^%s*(.-)%s*$", "%1")
  149.         table.insert(chatHistory, inputData)
  150.         if inputData == "/exit" then
  151.             os.queueEvent(event_exit)
  152.             return
  153.         end
  154.  
  155.         -- Parse input
  156.         if inputData == "" then inputData = "Hello." end
  157.         inputData = inputData:sub(1, 1):upper() .. inputData:sub(2, -1)
  158.         if not inputData:sub(-1, -1):find("[\.\?!,]") then inputData = inputData .. "." end
  159.         if inputData:len() > 45 and not inputData:sub(1, 45):find(" ") then
  160.             inputData = inputData:sub(1, 45) .. " " .. inputData:sub(46, -1)
  161.         end
  162.  
  163.         -- Clear
  164.         term.setCursorPos(3, 17)
  165.         term.clearLine()
  166.         write("> ")
  167.  
  168.         if inputData:len() > 46 then
  169.             local spaceData = {}
  170.             local loopNum = 0
  171.             while true do
  172.                 loopNum = inputData:find(" ", loopNum + 1, 1, true)
  173.                 table.insert(spaceData, loopNum)
  174.                 if type(loopNum) ~= "number" then
  175.                     table.insert(spaceData, 47)
  176.                     break
  177.                 end
  178.             end
  179.  
  180.             for k, v in ipairs(spaceData) do
  181.                 if v > 46 then
  182.                     chatLog[#chatLog + 1] = {inputData:sub(1, spaceData[k - 1] - 1), "user"}
  183.                     chatLog[#chatLog + 1] = {inputData:sub(spaceData[k - 1] + 1, -1), "user"}
  184.                     break
  185.                 end
  186.             end
  187.         else
  188.             chatLog[#chatLog + 1] = {inputData, "user"}
  189.         end
  190.  
  191.         os.queueEvent(event_updateChat, textutils.serialize(chatLog), true)
  192.  
  193.         -- Get response
  194.         local response = http.post(responseURL, "input=" .. textutils.urlEncode(inputData))
  195.         if response then
  196.             local responseData = response.readAll()
  197.             lastdata = responseData
  198.             if responseData:len() > 46 then
  199.                 local spaceData = {}
  200.                 local loopNum = 0
  201.                 while true do
  202.                     loopNum = responseData:find(" ", loopNum + 1, 1, true)
  203.                     table.insert(spaceData, loopNum)
  204.                     if type(loopNum) ~= "number" then
  205.                         table.insert(spaceData, 47)
  206.                         break
  207.                     end
  208.                 end
  209.  
  210.                 for k, v in ipairs(spaceData) do
  211.                     if v > 46 then
  212.                         chatLog[#chatLog + 1] = {responseData:sub(1, spaceData[k - 1] - 1), "bot"}
  213.                         chatLog[#chatLog + 1] = {responseData:sub(spaceData[k - 1], -1), "bot"}
  214.                         break
  215.                     end
  216.                 end
  217.             else
  218.                 chatLog[#chatLog + 1] = {responseData, "bot"}
  219.             end
  220.         else
  221.             chatLog[#chatLog + 1] = {"CCBot: An error has ocurred!", "bot"}
  222.         end
  223.  
  224.         os.queueEvent(event_updateChat, textutils.serialize(chatLog))
  225.         os.pullEvent(event_continue)
  226.     end
  227. end
  228.  
  229.  
  230. --  Main
  231.  
  232. local function main()
  233.     -- Top logo
  234.     term.setBackgroundColor(colors.white)
  235.     term.clear()
  236.     term.setCursorPos(19, 2)
  237.  
  238.     term.setTextColor(colors.lightBlue)
  239.     write("CClever")
  240.     term.setTextColor(colors.lime)
  241.     write("B")
  242.     term.setTextColor(colors.yellow)
  243.     write("o")
  244.     term.setTextColor(colors.red)
  245.     write("t  ")
  246.     term.setTextColor(colors.lightGray)
  247.     write(version)
  248.     term.setTextColor(colors.gray)
  249.     term.setCursorPos(1, 3)
  250.     centerPrint("- www.cleverbot.com -")
  251.  
  252.     -- Run
  253.     parallel.waitForAll(input, interface)
  254. end
  255.  
  256. -- Check
  257. if not http then
  258.     print("HTTP API Needs to be Enabled!")
  259.     print("CCleverBot heavily relies on it!")
  260.     error()
  261. end
  262.  
  263. -- Run
  264. local _, err = pcall(main)
  265. if err then
  266.     term.setTextColor(colors.white)
  267.     term.setBackgroundColor(colors.black)
  268.     term.clear()
  269.     term.setCursorPos(1, 1)
  270.     print("Error!")
  271.     print(err)
  272.     print("\nPress any key to exit...")
  273.     os.pullEvent("key")
  274. end
  275.  
  276. -- Exit
  277. term.setTextColor(colors.white)
  278. term.setBackgroundColor(colors.black)
  279. term.clear()
  280. term.setCursorPos(1, 1)
  281. centerPrint("Thank You for Using CCleverBot " .. version)
  282. centerPrint("Made by 1lann and GravityScore")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement