script.js 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. const canvas = document.getElementById('canvas')
  2. const ctx = canvas.getContext('2d')
  3. const width = canvas.width;
  4. const height = canvas.height;
  5. let current;
  6. let selection = []
  7. let currentArray = [];
  8. const tools = {
  9. graffity: {
  10. mousemove(e){ //e.buttons 0b00000x11 & 0b00000100 == x
  11. current = (e.buttons & 1) && new Circle(e.clientX, e.clientY, +size.value, color.value);
  12. currentArray.push(current);
  13. current = null;
  14. }
  15. },
  16. circle: {
  17. mousedown(e){
  18. current = new Circle(e.clientX,e.clientY, 1, color.value)
  19. },
  20. mousemove(e){
  21. if (!current) return;
  22. current.radius = current.distanceTo(e.clientX, e.clientY)
  23. Drawable.drawAll()
  24. },
  25. mouseup(e){
  26. currentArray.push(current)
  27. current = null
  28. }
  29. },
  30. rectangle: {
  31. mousedown(e){
  32. current = new Rectangle(e.clientX,e.clientY, 1, 1, color.value)
  33. },
  34. mousemove(e){
  35. if (!current) return;
  36. current.width = e.clientX - current.x
  37. current.height = e.clientY - current.y
  38. Drawable.drawAll()
  39. },
  40. mouseup(e){
  41. currentArray.push(current);
  42. current = null
  43. }
  44. },
  45. ellipse: {
  46. mousedown(e){
  47. current = new Ellipse(e.clientX, e.clientY, 1, 1, color.value)
  48. },
  49. mousemove(e){
  50. if (!current) return;
  51. var w = e.clientX - current.x;
  52. var h = e.clientY - current.y;
  53. current.width = w ? w : w * -1;
  54. current.height = h ? h : h * -1;
  55. Drawable.drawAll()
  56. },
  57. mouseup(e){
  58. currentArray.push(current);
  59. current = null
  60. }
  61. },
  62. line: {
  63. mousedown(e){
  64. current = new Line(e.clientX, e.clientY, 0, 0, color.value, +size.value)
  65. },
  66. mousemove(e){
  67. if (!current) return;
  68. current.width = e.clientX - current.x
  69. current.height = e.clientY - current.y
  70. Drawable.drawAll()
  71. },
  72. mouseup(e){
  73. currentArray.push(current);
  74. current = null
  75. }
  76. },
  77. select: {
  78. click(e){
  79. console.log(e)
  80. let found = Drawable.instances.filter(c => c.in && c.in(e.clientX, e.clientY))
  81. if (found.length){
  82. if (e.ctrlKey){
  83. selection.push(found.pop())
  84. }
  85. else {
  86. selection = [found.pop()]
  87. }
  88. }
  89. else {
  90. if (!e.ctrlKey) selection = []
  91. }
  92. Drawable.drawAll(selection)
  93. },
  94. mousedown(e){
  95. //
  96. },
  97. mousemove(e){
  98. },
  99. mouseup(e){
  100. //x,y, w, h прямоугольника
  101. //selection - только те элеменеты Drawable.instances которые в границах прямоугольника.
  102. },
  103. }
  104. }
  105. function superHandler(evt){
  106. let t = tools[tool.value]
  107. if (typeof t[evt.type] === 'function')
  108. t[evt.type].call(this, evt)
  109. }
  110. canvas.onmousemove = superHandler
  111. canvas.onmouseup = superHandler
  112. canvas.onmousedown = superHandler
  113. canvas.onclick = superHandler
  114. ////
  115. function Drawable(){
  116. Drawable.addInstance(this);
  117. }
  118. const distance = (x1,y1, x2, y2) => ((x1-x2)**2 + (y1-y2)**2)**0.5
  119. Drawable.prototype.draw = function(){};
  120. Drawable.prototype.distanceTo = function(x,y){
  121. if (typeof this.x !== 'number' ||
  122. typeof this.y !== 'number'){
  123. return NaN
  124. }
  125. return distance(this.x, this.y, x, y)
  126. };
  127. Drawable.instances = [];
  128. Drawable.addInstance = function(item){
  129. Drawable.instances.push(item);
  130. }
  131. Drawable.drawAll = function(selection=[]){
  132. ctx.clearRect(0,0,width,height);
  133. Drawable.forAll(item => item.draw())
  134. selection.forEach(item => item.draw(true))
  135. }
  136. Drawable.forAll = function(callback){
  137. for(var i = 0; i<Drawable.instances.length;i++){
  138. callback(Drawable.instances[i])
  139. }
  140. }
  141. class Circle extends Drawable {
  142. constructor(x,y,radius, color){
  143. super()
  144. this.x = x;
  145. this.y = y;
  146. this.radius = radius;
  147. this.color = color;
  148. this.draw();
  149. }
  150. draw(selected){
  151. ctx.beginPath();
  152. ctx.arc(this.x, this.y, this.radius, 0, 2 * Math.PI);
  153. ctx.closePath();
  154. ctx.fillStyle = this.color;
  155. if (selected){
  156. ctx.lineWidth = 2
  157. ctx.stroke();
  158. }
  159. ctx.fill();
  160. }
  161. in(x,y){
  162. return this.distanceTo(x,y) < this.radius
  163. }
  164. inBounds(x,y,w,h){ // x = 100, this.x = 102, w = 5
  165. return this.x >= x && this.x <= x + w &&
  166. this.y >= y && this.y <= y + h
  167. }
  168. }
  169. class Line extends Drawable {
  170. constructor(x,y, width, height, color, lineWidth){
  171. super()
  172. this.x = x;
  173. this.y = y;
  174. this.width = width;
  175. this.height = height;
  176. this.color = color;
  177. this.lineWidth = lineWidth;
  178. this.draw();
  179. }
  180. draw(){
  181. ctx.beginPath();
  182. ctx.moveTo(this.x, this.y);
  183. ctx.lineTo(this.x + this.width, this.y + this.height);
  184. ctx.closePath();
  185. ctx.strokeStyle = this.color;
  186. ctx.lineWidth = this.lineWidth
  187. ctx.stroke();
  188. }
  189. }
  190. color.onchange = () => {
  191. selection.forEach(c => c.color = color.value)
  192. Drawable.drawAll(selection)
  193. }
  194. document.getElementById('delete').onclick = () =>{
  195. Drawable.instances = Drawable.instances.filter(item => !selection.includes(item))
  196. selection = []
  197. Drawable.drawAll()
  198. }
  199. //new Line(0,0,100,100, "red")
  200. ////new Circle(30,30,10, "red")
  201. ////canvas.onmousemove = function(e){
  202. ////}
  203. //undo.onclick = function(){
  204. //Drawable.instances.pop()
  205. ////Drawable.instances = []
  206. //Drawable.drawAll()
  207. //}
  208. class Rectangle extends Drawable {
  209. constructor(x,y, width, height, color){
  210. super()
  211. this.x = x;
  212. this.y = y;
  213. this.width = width;
  214. this.height = height;
  215. this.color = color;
  216. this.draw();
  217. }
  218. draw(){
  219. ctx.beginPath();
  220. ctx.moveTo(this.x, this.y);
  221. ctx.rect(this.x, this.y, this.width, this.height);
  222. ctx.closePath();
  223. ctx.fillStyle = this.color;
  224. ctx.fill();
  225. }
  226. }
  227. class Ellipse extends Drawable {
  228. constructor(x,y, width, height, color){
  229. super()
  230. this.x = x ? x : x*-1;
  231. this.y = y ? y : y*-1;
  232. this.width = width;
  233. this.height = height;
  234. this.color = color;
  235. this.draw();
  236. }
  237. draw(){
  238. this.width = this.width > 0 ? this.width : this.width * (-1);
  239. this.height = this.height > 0 ? this.height : this.height * (-1);
  240. ctx.beginPath();
  241. ctx.moveTo(this.x, this.y);
  242. ctx.ellipse(this.x, this.y, this.height, this.width, Math.PI / 2, 0, 2 * Math.PI);
  243. ctx.closePath();
  244. ctx.fillStyle = this.color;
  245. ctx.fill();
  246. }
  247. }
  248. let undo = document.getElementById("undo");
  249. undo.onclick = () => {
  250. currentArray.pop()
  251. ctx.clearRect(0, 0, 400, 400);
  252. for(let key of currentArray) {
  253. if (key != 0) {
  254. key.draw()
  255. }
  256. }
  257. }