Advertisement
ccraftersanonmoose

Web-browser.lua

Apr 5th, 2025 (edited)
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.77 KB | None | 0 0
  1. -- Script to allow browsing of "websites" in game with CC:tweaked
  2. -- Should only be used on a "client"
  3. -- Make sure advanced montior is attached
  4. -- Touch navigation supported
  5. -- Scrollable websites to come as well as "search engine"
  6. -- Intended to be used in conjunction with other scripts at links below
  7. -- Website Editor: https://pastebin.com/xZpzw5Vt
  8. -- Web Server: https://pastebin.com/WNtwKkmM
  9. ------------------------------
  10. local monitor = peripheral.wrap("left")
  11. monitor.setTextScale(0.5)
  12. local modem = peripheral.wrap("right") or error("Modem not found")
  13. rednet.open(peripheral.getName(modem))
  14.  
  15. -- List of known page server IDs
  16. local pageServers = {1, 2, 30}  -- Change this to match your server IDs
  17.  
  18. local currentPage = "home"
  19. local history = {}
  20.  
  21. -- Custom word-wrap function (replaces textutils.wrap)
  22. local function wrapText(text, width)
  23.   local lines = {}
  24.   for line in text:gmatch("[^\n]+") do
  25.     while #line > width do
  26.       local cutoff = line:sub(1, width):match(".*() ") or width
  27.       table.insert(lines, line:sub(1, cutoff))
  28.       line = line:sub(cutoff + 1)
  29.     end
  30.     table.insert(lines, line)
  31.   end
  32.   return lines
  33. end
  34.  
  35. -- Request a page from the first responding server
  36. local function requestPage(page)
  37.   for _, server in ipairs(pageServers) do
  38.     rednet.send(server, {type = "request_page", page = page})
  39.     local id, response, _ = rednet.receive(2) -- wait 2s
  40.     if response and response.type == "page_data" then
  41.       return textutils.unserialize(response.content)
  42.     end
  43.   end
  44.   return {title = "Error", body = "Page not found.", links = {}}
  45. end
  46.  
  47. -- Draw the page on the monitor
  48. local function drawPage(data)
  49.   monitor.clear()
  50.   monitor.setCursorPos(1, 1)
  51.   monitor.setTextColor(colors.yellow)
  52.   monitor.write(data.title or "Untitled")
  53.  
  54.   monitor.setCursorPos(1, 3)
  55.   monitor.setTextColor(colors.white)
  56.   local lines = wrapText(data.body or "", 38)
  57.   for i, line in ipairs(lines) do
  58.     monitor.setCursorPos(1, 2 + i)
  59.     monitor.write(line)
  60.   end
  61.  
  62.   -- Draw links
  63.   local linkY = 3 + #lines + 1
  64.   for i, link in ipairs(data.links or {}) do
  65.     monitor.setCursorPos(2, linkY)
  66.     monitor.setTextColor(colors.cyan)
  67.     monitor.write("[" .. link.text .. "]")
  68.     link.y = linkY
  69.     linkY = linkY + 1
  70.   end
  71.  
  72.   return data.links
  73. end
  74.  
  75. -- Helper to check which link was tapped
  76. local function getLinkAtY(links, y)
  77.   for _, link in ipairs(links) do
  78.     if y == link.y then
  79.       return link.page
  80.     end
  81.   end
  82. end
  83.  
  84. -- Main browser loop
  85. while true do
  86.   local pageData = requestPage(currentPage)
  87.   local links = drawPage(pageData)
  88.  
  89.   local event, side, x, y = os.pullEvent("monitor_touch")
  90.   local target = getLinkAtY(links, y)
  91.   if target then
  92.     table.insert(history, currentPage)
  93.     currentPage = target
  94.   end
  95. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement