-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpattern_script.js
200 lines (167 loc) · 6.02 KB
/
pattern_script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
const PATERN_CONFIG = {
nodeRadius: 15,
cols: 3,
rows: 3,
activeColor: '#2196F3',
inactiveColor: '#e0e0e0'
};
const patern_state = {
canvas: null,
ctx: null,
nodes: [],
currentPath: [],
isDrawing: false
};
function patern_init() {
patern_state.canvas = document.getElementById('patern_canvas');
patern_state.ctx = patern_state.canvas.getContext('2d');
const dpr = window.devicePixelRatio || 1;
const rect = patern_state.canvas.getBoundingClientRect();
patern_state.canvas.width = rect.width * dpr;
patern_state.canvas.height = rect.height * dpr;
patern_state.ctx.scale(dpr, dpr);
patern_initGrid();
patern_setupEventListeners();
}
function patern_initGrid() {
const width = patern_state.canvas.width / (PATERN_CONFIG.cols + 1);
const height = patern_state.canvas.height / (PATERN_CONFIG.rows + 1);
for(let i = 0; i < PATERN_CONFIG.cols; i++) {
for(let j = 0; j < PATERN_CONFIG.rows; j++) {
patern_state.nodes.push({
x: width * (i + 1),
y: height * (j + 1),
number: (j * PATERN_CONFIG.cols) + i + 1,
active: false
});
}
}
patern_drawGrid();
}
function patern_drawGrid() {
patern_state.ctx.clearRect(0, 0, patern_state.canvas.width, patern_state.canvas.height);
if(patern_state.currentPath.length > 1) {
patern_state.ctx.beginPath();
patern_state.ctx.moveTo(patern_state.currentPath[0].x, patern_state.currentPath[0].y);
patern_state.ctx.lineWidth = 3;
patern_state.ctx.strokeStyle = PATERN_CONFIG.activeColor;
patern_state.currentPath.forEach(node => {
patern_state.ctx.lineTo(node.x, node.y);
});
patern_state.ctx.stroke();
}
patern_state.nodes.forEach(node => {
patern_state.ctx.beginPath();
patern_state.ctx.arc(node.x, node.y, PATERN_CONFIG.nodeRadius, 0, Math.PI * 2);
patern_state.ctx.fillStyle = node.active ? PATERN_CONFIG.activeColor : PATERN_CONFIG.inactiveColor;
patern_state.ctx.fill();
// Texto do nó
patern_state.ctx.fillStyle = node.active ? '#ffffff' : '#495057';
patern_state.ctx.font = '16px Arial';
patern_state.ctx.textAlign = 'center';
patern_state.ctx.textBaseline = 'middle';
patern_state.ctx.fillText(node.number, node.x, node.y);
});
}
function patern_getNode(x, y) {
return patern_state.nodes.find(node => {
const dx = node.x - x;
const dy = node.y - y;
return Math.sqrt(dx*dx + dy*dy) < PATERN_CONFIG.nodeRadius;
});
}
function patern_handleMouseDown(e) {
const rect = patern_state.canvas.getBoundingClientRect();
const x = e.clientX - rect.left;
const y = e.clientY - rect.top;
const node = patern_getNode(x, y);
if(node) {
patern_state.isDrawing = true;
node.active = true;
patern_state.currentPath.push(node);
patern_drawGrid();
}
}
function patern_handleMouseMove(e) {
if(!patern_state.isDrawing) return;
const rect = patern_state.canvas.getBoundingClientRect();
const x = e.clientX - rect.left;
const y = e.clientY - rect.top;
const node = patern_getNode(x, y);
if(node && !patern_state.currentPath.includes(node)) {
node.active = true;
patern_state.currentPath.push(node);
patern_drawGrid();
}
}
function patern_openModal() {
document.getElementById('patern_modal').classList.add('patern_modal--active');
patern_init();
}
function patern_closeModal() {
document.getElementById('patern_modal').classList.remove('patern_modal--active');
patern_resetPattern();
}
function patern_resetPattern() {
patern_state.currentPath = [];
patern_state.nodes.forEach(node => node.active = false);
patern_drawGrid();
}
function patern_savePattern() {
const tempCanvas = document.createElement('canvas');
const tempCtx = tempCanvas.getContext('2d');
const dpr = window.devicePixelRatio || 1;
tempCanvas.width = patern_state.canvas.width;
tempCanvas.height = patern_state.canvas.height;
tempCtx.scale(dpr, dpr);
tempCtx.textAlign = 'center';
tempCtx.textBaseline = 'middle';
tempCtx.font = '16px Arial';
patern_state.currentPath.forEach((node, index) => {
if(index > 0) {
tempCtx.beginPath();
tempCtx.moveTo(
patern_state.currentPath[index-1].x / dpr,
patern_state.currentPath[index-1].y / dpr
);
tempCtx.lineTo(node.x / dpr, node.y / dpr);
tempCtx.strokeStyle = PATERN_CONFIG.activeColor;
tempCtx.lineWidth = 3;
tempCtx.stroke();
}
tempCtx.beginPath();
tempCtx.arc(
node.x / dpr,
node.y / dpr,
PATERN_CONFIG.nodeRadius / dpr,
0,
Math.PI * 2
);
tempCtx.fillStyle = PATERN_CONFIG.activeColor;
tempCtx.fill();
tempCtx.fillStyle = '#ffffff';
tempCtx.fillText(
node.number.toString(),
node.x / dpr,
node.y / dpr
);
});
const base64 = tempCanvas.toDataURL();
const sequence = patern_state.currentPath.map(node => node.number).join('-');
document.getElementById('patern_imageOutput').value = base64;
document.getElementById('patern_sequenceOutput').value = sequence;
}
function patern_clearPattern() {
patern_state.currentPath = [];
patern_state.nodes.forEach(node => node.active = false);
document.getElementById('patern_imageOutput').value = '';
document.getElementById('patern_sequenceOutput').value = '';
patern_drawGrid();
}
function patern_setupEventListeners() {
patern_state.canvas.addEventListener('mousedown', patern_handleMouseDown);
patern_state.canvas.addEventListener('mousemove', patern_handleMouseMove);
patern_state.canvas.addEventListener('mouseup', () => {
patern_state.isDrawing = false;
});
}