paint.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. AV.init({
  2. appId: "BmologYYnRqCv0SLHDeDdA17-gzGzoHsz",
  3. appKey: "w9mVebFMdCmY6Nh9vfcBGaGt",
  4. serverURL: "https://bmologyy.lc-cn-n1-shared.com/",
  5. });
  6. $(window).on({
  7. contextmenu: function () {
  8. return false;
  9. },
  10. dragstart: function () {
  11. return false;
  12. },
  13. beforeunload: function () {
  14. return true;
  15. }
  16. })
  17. var tryTime = 0
  18. function tryClear() {
  19. if (tryTime == 0) alert('你干嘛')
  20. else if (tryTime == 1) alert('哎呦')
  21. else if (tryTime == 2) alert('不会让你清空的')
  22. else if (tryTime == 3) {
  23. alert('按钮都给你禁用咯')
  24. document.getElementById('clear').classList.add('disabled');
  25. } else if (tryTime == 10) {
  26. alert('...')
  27. } else if (tryTime > 10) {
  28. alert('闹呢')
  29. }
  30. tryTime++;
  31. }
  32. function setCookie(cname, cvalue, exdays) {
  33. var d = new Date();
  34. d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
  35. var expires = "expires=" + d.toGMTString();
  36. document.cookie = cname + "=" + cvalue + "; " + expires;
  37. }
  38. function getCookie(cname) {
  39. var name = cname + "=";
  40. var ca = document.cookie.split(';');
  41. for (var i = 0; i < ca.length; i++) {
  42. var c = ca[i].trim();
  43. if (c.indexOf(name) == 0) return c.substring(name.length, c.length);
  44. }
  45. return "";
  46. }
  47. function checkCookie() {
  48. var username = getCookie("name");
  49. if (username != "") {
  50. var result = confirm(username + ",确认上传?");
  51. if (result) return username
  52. else return false
  53. }
  54. else {
  55. username = prompt("同一设备一天内的编辑将会保存在一个版本中,并对所有人可见。\n可设置昵称:", "-");
  56. if (username != "" && username != null) {
  57. setCookie("name", username, 1);
  58. return username
  59. } else {
  60. return false
  61. }
  62. }
  63. }
  64. function getId() {
  65. var cookieId = getCookie('id')
  66. if (cookieId != '') return parseInt(cookieId)
  67. else {
  68. var newId = Math.ceil(Math.random() * 1000000)
  69. setCookie('id', newId, 1)
  70. return newId
  71. }
  72. }
  73. var curVer = 0, maxVer = -1, stopVer = 1000, stopped = false, working = false;
  74. var maxResult = {};
  75. function getMap() {
  76. if (working) {
  77. console.log("Too frequent!");
  78. return;
  79. }
  80. working = true;
  81. if (curVer != 0) document.getElementById('upload').classList.add('disabled'), document.getElementById('rbtn').classList.remove('disabled')
  82. else document.getElementById('upload').classList.remove('disabled'), document.getElementById('rbtn').classList.add('disabled')
  83. if (curVer >= stopVer) {
  84. if (!stopped) document.getElementById('lbtn').classList.add('disabled'), stopped = true;
  85. else {
  86. curVer = stopVer;
  87. working = false;
  88. return;
  89. }
  90. }
  91. else document.getElementById('lbtn').classList.remove('disabled'), stopped = false;
  92. document.getElementById('version').innerHTML = "当前版本:" + (curVer == 0 ? '' : '-') + curVer + ' by ';
  93. console.log('GetMap: currentVersion: ' + curVer)
  94. if (maxVer >= curVer) {
  95. console.log('Data loaded from cache')
  96. var map = maxResult[curVer].get('data'), date = maxResult[curVer].get('updatedAt')
  97. document.getElementById('version').title = date.getFullYear() + '-' + date.getMonth() + '-' + date.getDate() + ' ' + date.toString().split(' ')[4];
  98. document.getElementById('version').innerHTML += maxResult[curVer].get('nickName');
  99. for (let i = 0; i < box.length; i++) {
  100. box[i].style.backgroundColor = map[i]
  101. }
  102. working = false;
  103. } else {
  104. const query = new AV.Query('paint');
  105. query.descending('updatedAt')
  106. query.limit(curVer + 1)
  107. query.find().then((result) => {
  108. if (result.length > curVer) {
  109. console.log('Data loaded from LeanCloud')
  110. var map = result[curVer].get('data'), date = result[curVer].get('updatedAt')
  111. console.log(date)
  112. document.getElementById('version').title = date.getFullYear() + '-' + date.getMonth() + '-' + date.getDate() + ' ' + date.toString().split(' ')[4];
  113. document.getElementById('version').innerHTML += result[curVer].get('nickName');
  114. for (let i = 0; i < box.length; i++) {
  115. box[i].style.backgroundColor = map[i]
  116. }
  117. maxVer = curVer
  118. maxResult = result
  119. } else {
  120. console.log('Found no data!')
  121. curVer = result.length - 1;
  122. stopVer = result.length - 1;
  123. working = false;
  124. getMap()
  125. }
  126. working = false;
  127. })
  128. }
  129. }
  130. function reset() {
  131. curVer = 0;
  132. maxVer = -1;
  133. stopVer = 1000;
  134. getMap()
  135. }
  136. function prevVer() {
  137. if (working) {
  138. console.log("Too frequent!");
  139. return;
  140. }
  141. curVer++, getMap();
  142. }
  143. function nextVer() {
  144. if (working) {
  145. console.log("Too frequent!");
  146. return;
  147. }
  148. curVer == 0 ? true : (curVer--, getMap());
  149. }
  150. document.onkeydown = function (event) {
  151. var e = event || window.event || arguments.callee.caller.arguments[0];
  152. if (e) {
  153. if (e.key == "a") {
  154. prevVer()
  155. }
  156. else if (e.key == "d") {
  157. nextVer()
  158. }
  159. }
  160. };
  161. let box = []
  162. $(document).ready(function () {
  163. let color = '#000'
  164. let lcolor = '#000'
  165. function updateCol() {
  166. lcolor = 'rgb('
  167. + document.getElementById('box-r-text').innerHTML + ', '
  168. + document.getElementById('box-g-text').innerHTML + ', '
  169. + document.getElementById('box-b-text').innerHTML + ')'
  170. nowColor.style.backgroundColor = lcolor
  171. }
  172. function slider(obj, num) {
  173. var box = document.getElementById(obj);
  174. var hd = box.children[0];
  175. var hdt = box.children[1];
  176. var mouseMoved = false;
  177. hd.onmousedown = function (event) {
  178. mouseMoved = false;
  179. var event = event || window.event;
  180. var leftval = event.clientX - this.offsetLeft;
  181. document.onmousemove = function (event) {
  182. mouseMoved = true;
  183. var event = event || window.event;
  184. hd.style.left = event.clientX - leftval + "px";
  185. var far = parseInt(hd.style.left);
  186. if (far < 0) hd.style.left = 0;
  187. else if (far > 180) hd.style.left = 180 + "px";
  188. hdt.style.width = hd.style.left;
  189. var result = parseInt(parseInt(hdt.style.width) / 180 * num);
  190. document.getElementById(obj + '-text').innerHTML = result;
  191. updateCol()
  192. }
  193. document.onmouseup = function () {
  194. document.onmousemove = null;
  195. }
  196. }
  197. box.onclick = function (event) {
  198. var event = event || window.event;
  199. if (mouseMoved) { mouseMoved = false; return false; }
  200. mouseMoved = false;
  201. var boxWidth = event.clientX - this.offsetLeft - document.getElementById('tools').offsetLeft;
  202. if (boxWidth > 180) boxWidth = 180;
  203. if (boxWidth < 0) boxWidth = 0;
  204. hdt.style.width = hd.style.left = boxWidth + 'px';
  205. var result = parseInt(parseInt(hdt.style.width) / 180 * num);
  206. document.getElementById(obj + '-text').innerHTML = result;
  207. updateCol()
  208. }
  209. }
  210. function changeSlider(obj, num, newVal) {
  211. var box = document.getElementById(obj);
  212. var hd = box.children[0];
  213. var hdt = box.children[1];
  214. hd.style.left = newVal / num * 180 + 'px';
  215. hdt.style.width = hd.style.left;
  216. document.getElementById(obj + '-text').innerHTML = newVal;
  217. }
  218. slider('box-r', 255);
  219. slider('box-g', 255);
  220. slider('box-b', 255);
  221. var id = getId()
  222. console.log('id: ' + id)
  223. var draw = document.getElementById('draw')
  224. draw.draggable = false
  225. var lineButton = document.getElementById('show-hide-line')
  226. var colorList = document.getElementById('color-list')
  227. var resetButton = document.getElementById('reset')
  228. var zoomButton = document.getElementById('zoom')
  229. var toggleButton = document.getElementById('toggle')
  230. var nowColor = document.getElementById('now-color')
  231. var isdown = 0;
  232. draw.onmousedown = function () {
  233. isdown = 1;
  234. }
  235. draw.onmouseup = function () {
  236. isdown = 0;
  237. }
  238. let showGrid = false
  239. let zoom = false
  240. let showTools = false
  241. draw.draggable = false
  242. for (let i = 0; i < 128; i++) {
  243. for (let j = 0; j < 128; j++) {
  244. box.push(document.createElement("div"))
  245. }
  246. }
  247. for (let i = 0; i < box.length; i++) {
  248. box[i].style.backgroundColor = "#fff"
  249. box[i].className = 'pixel'
  250. box[i].onmousedown = function (e) {
  251. if (e.button == 0) color = lcolor
  252. else color = '#fff'
  253. box[i].style.backgroundColor = color
  254. }
  255. box[i].onmouseover = function () {
  256. if (isdown) box[i].style.backgroundColor = color
  257. else if (box[i].style.backgroundColor == 'rgb(255, 255, 255)') {
  258. box[i].style.backgroundColor = 'rgb(235, 235, 235)'
  259. }
  260. }
  261. box[i].onmouseleave = function () {
  262. if (!isdown && box[i].style.backgroundColor == 'rgb(235, 235, 235)') box[i].style.backgroundColor = ('#ffffff')
  263. }
  264. draw.appendChild(box[i])
  265. }
  266. reset();
  267. lineButton.onclick = function () {
  268. if (showGrid) {
  269. changeClass(box, 'pixel')
  270. showGrid = false
  271. } else {
  272. changeClass(box, 'pixel-line')
  273. showGrid = true
  274. }
  275. }
  276. resetButton.onclick = function () {
  277. reset()
  278. }
  279. toggleButton.onclick = function () {
  280. var tool = $('#tools')
  281. var controls = $('#controls')
  282. if (showTools) {
  283. tool[0].style.setProperty('transform', '');
  284. controls[0].style.setProperty('transform', '');
  285. showTools = 0;
  286. } else {
  287. tool[0].style.setProperty('transform', 'scale(80%) translate(170px,530px)');
  288. controls[0].style.setProperty('transform', 'rotate(-30deg) translate(-370px,50px)');
  289. showTools = 1;
  290. }
  291. }
  292. zoomButton.onclick = function () {
  293. if (zoom == 0) {
  294. draw.style.setProperty('transform', 'scale(200%) translate(-' + draw.offsetLeft / 4 + 'px,16px)')
  295. zoom = 1
  296. } else if (zoom == 1) {
  297. draw.style.setProperty('transform', 'scale(400%) translate(-' + draw.offsetLeft / 4 + 'px,8px)')
  298. zoom = 2
  299. this.children[0].classList.remove('glyphicon-zoom-in')
  300. this.children[0].classList.add('glyphicon-zoom-out')
  301. } else {
  302. draw.style.setProperty('transform', '')
  303. zoom = 0
  304. this.children[0].classList.remove('glyphicon-zoom-out')
  305. this.children[0].classList.add('glyphicon-zoom-in')
  306. }
  307. }
  308. let colors = ['#FFF', '#000', '#7f7f7f', '#c3c3c3', '#880015', '#ed1c24', '#ff7f27', "#fff200", "#22b14c", "#00a2e8", "#3f48cc", "#a349a4"]
  309. for (let i = 0; i < colors.length; i++) {
  310. let colorItem = document.createElement("li")
  311. colorItem.className = 'color-item'
  312. colorItem.style.backgroundColor = colors[i]
  313. colorItem.onclick = function () {
  314. lcolor = colors[i]
  315. nowColor.style.backgroundColor = colors[i]
  316. changeSlider('box-r', 255, parseInt(colorItem.style.backgroundColor.split(',')[0].split('(')[1]))
  317. changeSlider('box-g', 255, parseInt(colorItem.style.backgroundColor.split(',')[1]))
  318. changeSlider('box-b', 255, parseInt(colorItem.style.backgroundColor.split(',')[2]))
  319. updateCol();
  320. }
  321. if (i === 0) {
  322. colorItem.style.border = '1px solid #000000'
  323. }
  324. colorList.appendChild(colorItem)
  325. }
  326. function changeClass(arr, className) {
  327. for (let i = 0; i < arr.length; i++) {
  328. arr[i].className = className
  329. }
  330. }
  331. upload.onclick = function () {
  332. if (curVer != 0) {
  333. alert('对历史版本的编辑无法保存!')
  334. return false;
  335. }
  336. var nick = checkCookie()
  337. console.log('nickName: ' + nick)
  338. if (nick) {
  339. const query = new AV.Query('paint');
  340. console.log('id: ' + id)
  341. query.equalTo('id', id)
  342. query.find().then((result) => {
  343. var map = []
  344. for (let i = 0; i < box.length; i++) {
  345. map[i] = box[i].style.backgroundColor
  346. }
  347. if (result.length) {
  348. result[0].set('data', map)
  349. result[0].set('nickName', nick)
  350. result[0].save()
  351. console.log('Updated')
  352. }
  353. else {
  354. const up = new AV.Object('paint');
  355. up.set('data', map)
  356. up.set('id', id)
  357. up.set('nickName', nick)
  358. up.save()
  359. console.log('Created new instance')
  360. }
  361. })
  362. document.getElementById('version').innerHTML = "当前版本:" + (curVer == 0 ? '' : '-') + curVer + ' by ' + nick;
  363. }
  364. }
  365. })