Advertisement
Guest User

PossieOS Client

a guest
Apr 4th, 2013
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.14 KB | None | 0 0
  1. serverID = 45 -- Change this to the ID of the server computer
  2. rednet.open("top") -- Put the modem on the top
  3.  
  4. if fs.isDir("CurentWebsite") == false then
  5. fs.makeDir("CurentWebsite")
  6. make = fs.open("CurentWebsite/WebPage", "w")
  7. make.close("")
  8. end
  9.  
  10. function printSearchResult()
  11. shell.run("clear")
  12. print("Search Results")
  13. print()
  14. thing = 0
  15. repeat
  16. thing = thing + 1
  17. webParts = split(result[thing], "/")
  18. if cur == thing then
  19. print("-> www."..webParts[2].."."..webParts[3])
  20. else
  21. print("www."..webParts[2].."."..webParts[3])
  22. end
  23. until thing == max
  24. end
  25.  
  26. function printExtension()
  27. shell.run("clear")
  28. print("Choose an extension")
  29. if ecur == 1 then
  30. print("-> .mine")
  31. else
  32. print(".mine")
  33. end
  34. if ecur == 2 then
  35. print("-> .pos")
  36. else
  37. print(".pos")
  38. end
  39. if ecur == 3 then
  40. print("-> .tv")
  41. else
  42. print(".tv")
  43. end
  44. if ecur == 4 then
  45. print("-> .mol")
  46. else
  47. print(".mol")
  48. end
  49. end
  50.  
  51. function split(str, pat)
  52. local t = { }
  53. local fpat = "(.-)"..pat
  54. local last_end = 1
  55. local s, e, cap = str:find(fpat, 1)
  56. while s do
  57. if s ~= 1 or cap ~= "" then
  58. table.insert(t,cap)
  59. end
  60. last_end = e+1
  61. s, e, cap = str:find(fpat, last_end)
  62. end
  63. if last_end <= #str then
  64. cap = str:sub(last_end)
  65. table.insert(t, cap)
  66. end
  67. return t
  68. end
  69.  
  70. function displayMain()
  71. term.clear()
  72. applicationX = {1,2,3,4,5,6,7,8,9,10,11}
  73. applicationY = {5,6,7,8}
  74. settingsX = {15,16,17,18,19,20,21,22,23,24,25}
  75. settingsY = {5,6,7,8}
  76. browserX = {29,30,31,32,33,34,35,36,37,38,39}
  77. browserY = {5,6,7,8}
  78. searchX = {1,2}
  79. searchY = {18,19}
  80. term.setCursorPos(1,4)
  81. print(' ____ ')
  82. print(' / |___ ')
  83. print('| Program |')
  84. print('| To Web |')
  85. print('|_________|')
  86. term.setCursorPos(15,4)
  87. term.write(' ____ ')
  88. term.setCursorPos(15,5)
  89. term.write(' / |___ ')
  90. term.setCursorPos(15,6)
  91. term.write('| |')
  92. term.setCursorPos(15,7)
  93. term.write('|Make Site|')
  94. term.setCursorPos(15,8)
  95. term.write('|_________|')
  96. term.setCursorPos(29,4)
  97. term.write(' ____ ')
  98. term.setCursorPos(29,5)
  99. term.write(' / |___ ')
  100. term.setCursorPos(29,6)
  101. term.write('| |')
  102. term.setCursorPos(29,7)
  103. term.write('| Browser |')
  104. term.setCursorPos(29,8)
  105. term.write('|_________|')
  106. term.setCursorPos(1,1)
  107. print("WELCOME: Joseph wifi is on")
  108. print("---------------------------------------------------")
  109. term.setCursorPos(1,18)
  110. print(" O")
  111. term.write("/")
  112. end
  113.  
  114. displayMain()
  115. while true do
  116. event, param1, param2, param3 = os.pullEvent()
  117. if event == "mouse_click" then
  118. if param1 == 1 then
  119. for i,v in ipairs(applicationY) do
  120. if param3 == v then
  121. for i,v in ipairs(applicationX) do
  122. if param2 == v then
  123. shell.run("clear")
  124. term.write("Write file name to upload into site: ")
  125. s = read()
  126. s = string.upper(s)
  127. if s == "startup" then
  128. shell.run("clear")
  129. print("CAN NOT UPLOAD THE PROGRAM YOU ARE IN")
  130. os.sleep(2)
  131. displayMain()
  132. elseif fs.exists(s) then
  133. shell.run("clear")
  134. term.write("ENTER TAGS (SEPERATE WITH /): ")
  135. tags = string.upper(read())
  136. printExtension()
  137. emin = 1
  138. emax = 4
  139. ecur = 1
  140. while true do
  141. event, param = os.pullEvent()
  142. if event == "key" and param == 200 then
  143. if ecur == emin then
  144. ecur = emax
  145. printExtension()
  146. else
  147. ecur = ecur-1
  148. printExtension()
  149. end
  150. elseif event == "key" and param == 208 then
  151. if ecur == emax then
  152. ecur = emin
  153. printExtension()
  154. else
  155. ecur = ecur+1
  156. printExtension()
  157. end
  158. elseif event == "key" and param == 28 then
  159. if ecur == 1 then
  160. extension = "mine"
  161. elseif ecur == 2 then
  162. extension = "pos"
  163. elseif ecur == 3 then
  164. extension = "tv"
  165. elseif ecur == 4 then
  166. extension = "mol"
  167. end
  168. break
  169. end
  170. end
  171. file = fs.open(s, "r")
  172. site = file.readAll()
  173. file.close()
  174. rednet.send(serverID, "makeSite!SP!"..s.."!SP!"..tags.."!SP!"..extension.."!SP!"..site)
  175. displayMain()
  176. else
  177. shell.run("clear")
  178. print("FILE DOES NOT EXIST")
  179. os.sleep(2)
  180. displayMain()
  181. end
  182. end
  183. end
  184. end
  185. end
  186. for i,v in ipairs(settingsY) do
  187. if param3 == v then
  188. for i,v in ipairs(settingsX) do
  189. if param2 == v then
  190. shell.run("clear")
  191. term.write("NAME: ")
  192. name = read()
  193. shell.run("edit sites/"..name)
  194. nSite = fs.open("sites/"..name, "r")
  195. fSite = nSite.readAll()
  196. nSite.close()
  197. term.write("Do you still want to continue (yes or no): ")
  198. answer = string.upper(read())
  199. if answer == "YES" then
  200. shell.run("clear")
  201. term.write("ENTER TAGS (SEPERATE WITH /): ")
  202. tags = string.upper(read())
  203. shell.run("clear")
  204. emin = 1
  205. emax = 4
  206. ecur = 1
  207. printExtension()
  208. while true do
  209. event, param = os.pullEvent()
  210. if event == "key" and param == 200 then
  211. if ecur == emin then
  212. ecur = emax
  213. printExtension()
  214. else
  215. ecur = ecur-1
  216. printExtension()
  217. end
  218. elseif event == "key" and param == 208 then
  219. if ecur == emax then
  220. ecur = emin
  221. printExtension()
  222. else
  223. ecur = ecur+1
  224. printExtension()
  225. end
  226. elseif event == "key" and param == 28 then
  227. if ecur == 1 then
  228. extension = "mine"
  229. elseif ecur == 2 then
  230. extension = "pos"
  231. elseif ecur == 3 then
  232. extension = "tv"
  233. elseif ecur == 4 then
  234. extension = "mol"
  235. end
  236. break
  237. end
  238. end
  239. rednet.send(serverID, "makeSite!SP!"..name.."!SP!"..tags.."!SP!"..extension.."!SP!"..fSite)
  240. end
  241.  
  242. end
  243. end
  244. displayMain()
  245. end
  246. end
  247. for i,v in ipairs(browserY) do
  248. if param3 == v then
  249. for i,v in ipairs(browserX) do
  250. if param2 == v then
  251. shell.run("clear")
  252. term.setCursorPos(9,4)
  253. print("|-----|----| |--------| |")
  254. term.setCursorPos(9,5)
  255. print("| | | | | |")
  256. term.setCursorPos(9,6)
  257. print("| | | | | |")
  258. term.setCursorPos(9,7)
  259. print("| | | | |")
  260. term.setCursorPos(9,8)
  261. print("| | |________| |______")
  262. sleep(2)
  263. shell.run("clear")
  264. print("Welcome to the MOL search engine!!!")
  265. print("")
  266. input = read()
  267. search = string.upper(input)
  268. j = "search!SP!"..search
  269. rednet.send(serverID, j)
  270. id, msg, d = rednet.receive(2)
  271. shell.run("clear")
  272. print("SEARCH RESULTS:")
  273. print(msg)
  274. result = textutils.unserialize(msg)
  275. if result ~= nil then
  276. min = 1
  277. max = #result
  278. cur = 1
  279. printSearchResult()
  280. while true do
  281. event, param = os.pullEvent()
  282. if event == "key" and param == 200 then
  283. if cur == min then
  284. cur = max
  285. printSearchResult()
  286. else
  287. cur = cur-1
  288. printSearchResult()
  289. end
  290. elseif event == "key" and param == 208 then
  291. if cur == max then
  292. cur = min
  293. printSearchResult()
  294. else
  295. cur = cur+1
  296. printSearchResult()
  297. end
  298. elseif event == "key" and param == 28 then
  299. sMsg = "openWebSite!SP!"..result[cur]
  300. print(sMsg)
  301. sleep(1)
  302. rednet.send(serverID, sMsg)
  303. id, msg, d = rednet.receive(2)
  304. blankPage = fs.open("CurentWebsite/WebPage", "w")
  305. blankPage.write(msg)
  306. blankPage.close()
  307. shell.run("clear")
  308. shell.run("CurentWebsite/WebPage")
  309. blankPage2 = fs.open("CurentWebsite/WebPage", "w")
  310. blankPage2.close()
  311. print("PRESS ENTER")
  312. read()
  313. displayMain()
  314. break
  315. end
  316. end
  317. end
  318. end
  319. end
  320. end
  321. end
  322. for i,v in ipairs(searchY) do
  323. if param3 == v then
  324. for i,v in ipairs(searchX) do
  325. if param2 == v then
  326. term.setCursorPos(4,19)
  327. term.write(": ")
  328. s = read()
  329. s = string.upper(s)
  330. if s == "startup" then
  331. shell.run("clear")
  332. print("CAN NOT RUN THE PROGRAM YOU ARE IN")
  333. os.sleep(2)
  334. displayMain()
  335. elseif fs.exists(s) or fs.exists("rom/programs/"..s) then
  336. shell.run("clear")
  337. shell.run(s)
  338. os.sleep(3)
  339. displayMain()
  340. else
  341. shell.run("clear")
  342. print("FILE DOES NOT EXIST")
  343. os.sleep(2)
  344. displayMain()
  345. end
  346. end
  347. end
  348. end
  349. end
  350. elseif param1 == 2 then
  351. break
  352. end
  353. end
  354. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement