Advertisement
Guest User

phpscreenshot lua-part v2

a guest
May 8th, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.54 KB | None | 0 0
  1. -- Version 2
  2.  
  3. term.clear()
  4. term.setCursorPos(1,1)
  5.  
  6.  
  7. -- Uses Gopher's redirect buffer api v1.2
  8. -- http://www.computercraft.info/forums2/index.php?/topic/5130-gophers-apis-new-ggui-beta-goroutine-redirect-ctrlkeys/page__hl__gopheratl
  9.  
  10. local trueCursor={term.getCursorPos()}
  11.  
  12. local redirectBufferBase = {
  13. write=
  14. function(buffer,...)
  15. local cy=buffer.curY
  16. if cy>0 and cy<=buffer.height then
  17. local text=table.concat({...}," ")
  18. local cx=buffer.curX
  19. local px, py
  20. if buffer.isActive and not buffer.cursorBlink then
  21. term.native.setCursorPos(cx+buffer.scrX, cy+buffer.scrY)
  22. end
  23. for i=1,#text do
  24. if cx<=buffer.width then
  25. local curCell=buffer[cy][cx]
  26. local char,textColor,backgroundColor=string.char(text:byte(i)),buffer.textColor,buffer.backgroundColor
  27. if buffer[cy].isDirty or curCell.char~=char or curCell.textColor~=textColor or curCell.backgroundColor~=backgroundColor then
  28. buffer[cy][cx].char=char
  29. buffer[cy][cx].textColor=textColor
  30. buffer[cy][cx].backgroundColor=backgroundColor
  31. buffer[cy].isDirty=true
  32. end
  33. end
  34. cx=cx+1
  35. end
  36. buffer.curX=cx
  37. if buffer.isActive then
  38. buffer.drawDirty()
  39. if not buffer.cursorBlink then
  40. trueCursor={cx+buffer.scrX-1,cy+buffer.scrY-1}
  41. term.native.setCursorPos(unpack(trueCursor))
  42. end
  43. end
  44. end
  45. end,
  46.  
  47. setCursorPos=
  48. function(buffer,x,y)
  49. buffer.curX=math.floor(x)
  50. buffer.curY=math.floor(y)
  51. if buffer.isActive and buffer.cursorBlink then
  52. term.native.setCursorPos(x+buffer.scrX-1,y+buffer.scrY-1)
  53. trueCursor={x+buffer.scrX-1,y+buffer.scrY-1}
  54. end
  55. end,
  56.  
  57. getCursorPos=
  58. function(buffer)
  59. return buffer.curX,buffer.curY
  60. end,
  61.  
  62. scroll=
  63. function(buffer,offset)
  64. for j=1,offset do
  65. local temp=table.remove(buffer,1)
  66. table.insert(buffer,temp)
  67. for i=1,#temp do
  68. temp[i].char=" "
  69. temp[i].textColor=buffer.textColor
  70. temp[i].backgroundColor=buffer.backgroundColor
  71. end
  72. end
  73. if buffer.isActive then
  74. term.redirect(term.native)
  75. buffer.blit()
  76. term.restore()
  77. end
  78. end,
  79.  
  80. isColor=
  81. function(buffer)
  82. return buffer._isColor
  83. end,
  84.  
  85. isColour=
  86. function(buffer)
  87. return buffer._isColor
  88. end,
  89.  
  90. clear=
  91. function(buffer)
  92. for y=1,buffer.height do
  93. for x=1,buffer.width do
  94. buffer[y][x]={char=" ",textColor=buffer.textColor,backgroundColor=buffer.backgroundColor}
  95. end
  96. end
  97. if buffer.isActive then
  98. term.redirect(term.native)
  99. buffer.blit()
  100. term.restore()
  101. end
  102. end,
  103.  
  104. clearLine=
  105. function(buffer)
  106. local line=buffer[buffer.curY]
  107. local fg,bg = buffer.textColor, buffer.backgroundColor
  108. for x=1,buffer.width do
  109. line[x]={char=" ",textColor=fg,backgroundColor=bg}
  110. end
  111. buffer[buffer.curY].isDirty=true
  112. if buffer.isActive then
  113. buffer.drawDirty()
  114. end
  115. end,
  116.  
  117. setCursorBlink=
  118. function(buffer,onoff)
  119. buffer.cursorBlink=onoff
  120. if buffer.isActive then
  121. term.native.setCursorBlink(onoff)
  122. if onoff then
  123. term.native.setCursorPos(buffer.curX,buffer.curY)
  124. trueCursor={buffer.curX,buffer.curY}
  125. end
  126. end
  127. end,
  128.  
  129. getSize=
  130. function(buffer)
  131. return buffer.width, buffer.height
  132. end,
  133.  
  134. setTextColor=
  135. function(buffer,color)
  136. buffer.textColor=color
  137. if buffer.isActive then
  138. if term.native.isColor() or color==colors.black or color==colors.white then
  139. term.native.setTextColor(color)
  140. end
  141. end
  142. end,
  143.  
  144. setTextColour=
  145. function(buffer,color)
  146. buffer.textColor=color
  147. if buffer.isActive then
  148. if term.native.isColor() or color==colors.black or color==colors.white then
  149. term.native.setTextColor(color)
  150. end
  151. end
  152. end,
  153.  
  154. setBackgroundColor=
  155. function(buffer,color)
  156. buffer.backgroundColor=color
  157. if buffer.isActive then
  158. if term.native.isColor() or color==colors.black or color==colors.white then
  159. term.native.setBackgroundColor(color)
  160. end
  161. end
  162. end,
  163.  
  164. setBackgroundColour=
  165. function(buffer,color)
  166. buffer.backgroundColor=color
  167. if buffer.isActive then
  168. if term.native.isColor() or color==colors.black or color==colors.white then
  169. term.native.setBackgroundColor(color)
  170. end
  171. end
  172. end,
  173.  
  174. resize=
  175. function(buffer,width,height)
  176. if buffer.width~=width or buffer.height~=height then
  177. local fg, bg=buffer.textColor, buffer.backgroundColor
  178. if width>buffer.width then
  179. for y=1,buffer.height do
  180. for x=#buffer[y]+1,width do
  181. buffer[y][x]={char=" ",textColor=fg,backgroundColor=bg}
  182. end
  183. end
  184. end
  185.  
  186. if height>buffer.height then
  187. local w=width>buffer.width and width or buffer.width
  188. for y=#buffer+1,height do
  189. local row={}
  190. for x=1,width do
  191. row[x]={char=" ",textColor=fg,backgroundColor=bg}
  192. end
  193. buffer[y]=row
  194. end
  195. end
  196. buffer.width=width
  197. buffer.height=height
  198. end
  199. end,
  200.  
  201. blit=
  202. function(buffer,sx,sy,dx, dy, width,height)
  203. sx=sx or 1
  204. sy=sy or 1
  205. dx=dx or buffer.scrX
  206. dy=dy or buffer.scrY
  207. width=width or buffer.width
  208. height=height or buffer.height
  209.  
  210. local h=sy+height>buffer.height and buffer.height-sy or height-1
  211. for y=0,h do
  212. local row=buffer[sy+y]
  213. local x=0
  214. local cell=row[sx]
  215. local fg,bg=cell.textColor,cell.backgroundColor
  216. local str=""
  217. local tx=x
  218. while true do
  219. str=str..cell.char
  220. x=x+1
  221. if x==width or sx+x>buffer.width then
  222. break
  223. end
  224. cell=row[sx+x]
  225. if cell.textColor~=fg or cell.backgroundColor~=bg then
  226. --write
  227. term.setCursorPos(dx+tx,dy+y)
  228. term.setTextColor(fg)
  229. term.setBackgroundColor(bg)
  230. term.write(str)
  231. str=""
  232. tx=x
  233. fg=cell.textColor
  234. bg=cell.backgroundColor
  235. end
  236. end
  237. term.setCursorPos(dx+tx,dy+y)
  238. term.setTextColor(fg)
  239. term.setBackgroundColor(bg)
  240. term.write(str)
  241. end
  242. end,
  243.  
  244. drawDirty =
  245. function(buffer)
  246. term.redirect(term.native)
  247. for y=1,buffer.height do
  248. if buffer[y].isDirty then
  249. term.redirect(term.native)
  250. buffer.blit(1,y,buffer.scrX,buffer.scrY+y-1,buffer.width,buffer.height)
  251. term.restore()
  252. buffer[y].isDirty=false
  253. end
  254. end
  255. term.restore()
  256. end,
  257.  
  258. makeActive =
  259. function(buffer,posX, posY)
  260. posX=posX or 1
  261. posY=posY or 1
  262. buffer.scrX=posX
  263. buffer.scrY=posY
  264. term.redirect(term.native)
  265. buffer.blit(1,1,posX,posY,buffer.width,buffer.height)
  266. term.setCursorPos(buffer.curX,buffer.curY)
  267. term.setCursorBlink(buffer.cursorBlink)
  268. term.setTextColor(buffer.textColor)
  269. term.setBackgroundColor(buffer.backgroundColor)
  270. buffer.isActive=true
  271. term.restore()
  272. end,
  273.  
  274. isBuffer = true,
  275.  
  276. }
  277.  
  278.  
  279. function createRedirectBuffer(width,height,fg,bg,isColor)
  280. bg=bg or colors.black
  281. fg=fg or colors.white
  282. isColor=isColor~=nil and isColor or term.isColor()
  283. local buffer={}
  284.  
  285. do
  286. local w,h=term.getSize()
  287. width,height=width or w,height or h
  288. end
  289.  
  290. for y=1,height do
  291. local row={}
  292. for x=1,width do
  293. row[x]={char=" ",textColor=fg,backgroundColor=bg}
  294. end
  295. buffer[y]=row
  296. end
  297. buffer.scrX=1
  298. buffer.scrY=1
  299. buffer.width=width
  300. buffer.height=height
  301. buffer.cursorBlink=false
  302. buffer.textColor=fg
  303. buffer.backgroundColor=bg
  304. buffer._isColor=isColor
  305. buffer.curX=1
  306. buffer.curY=1
  307.  
  308. local meta={}
  309. local function wrap(f,o)
  310. return function(...)
  311. return f(o,...)
  312. end
  313. end
  314. for k,v in pairs(redirectBufferBase) do
  315. if type(v)=="function" then
  316. meta[k]=wrap(v,buffer)
  317. else
  318. meta[k]=v
  319. end
  320. end
  321. setmetatable(buffer,{__index=meta})
  322. return buffer
  323. end
  324.  
  325.  
  326.  
  327. local w,h = term.getSize()
  328. local buff = createRedirectBuffer(w,h,colors.white,colors.black,true)
  329. term.redirect(buff)
  330. buff.makeActive(1,1)
  331.  
  332. function screenshot()
  333. local function c(num) --color conversion
  334. return string.format("%x",math.log(num)/math.log(2))
  335. end
  336. local text = ""
  337. local fore = ""
  338. local back = ""
  339. for y,row in ipairs(buff) do
  340. for x,char in ipairs(row) do
  341. text=text..char.char
  342. fore=fore..c(char.textColor)
  343. back=back..c(char.backgroundColor)
  344. end
  345. end
  346. local file = io.open("screen.txt","a")
  347. local url = "\nhttp://janvanrosmalen.com/ccrender/color/"
  348. local function add(text)
  349. url = url..textutils.urlEncode(tostring(text)).."/"
  350. end
  351. add(w) add(h) add(text) add(fore) add(back) add(buff.curX) add(buff.curY)
  352. add(c(buff.textColor)) add(c(buff.backgroundColor)) add(buff.cursorBlink)
  353. file:write(url.."screenshot.png")
  354. file:close()
  355. end
  356.  
  357.  
  358. local roll=true
  359. function go()
  360. print("Press f1 to make a screenshot.")
  361. print("Type exit to leave screenshot mode")
  362. shell.run("rom/programs/shell")
  363. roll=false
  364. end
  365.  
  366. local route = coroutine.create(go)
  367. os.queueEvent("derp")
  368. while roll do
  369. local evt = {os.pullEventRaw()}
  370. if (evt[1]=="key") and (evt[2]==keys.f1) then
  371. screenshot()
  372. end
  373. coroutine.resume(route,unpack(evt))
  374. end
  375.  
  376. term.restore()
  377. term.clear()
  378. term.setCursorPos(1,1)
  379. print("Left screenshot mode")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement