-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcropper.js
400 lines (362 loc) · 10.9 KB
/
cropper.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
let Cropper = require('cropperjs');
let currCropDetails = {};
let ipcRenderer = window.ipcRenderer;
let isScreenvas = false;
let screenvasData = undefined;
let util = require('util');
ipcRenderer.on('screenvas_data', (event, arg) => {
isScreenvas = true;
screenvasData = arg;
});
let internalWidth = 960;
let internalHeight = 540;
let outputWidth = 1920;
let outputHeight = 1080;
let scaleUpCrop = (crop, video) => {
crop.x = crop.x / internalWidth;
crop.y = crop.y / internalHeight;
crop.width = crop.width / internalWidth;
crop.height = crop.height / internalHeight;
crop.isNormalized = true;
return crop;
};
let scaleDownCrop = (crop, video) => {
if(crop.isNormalized) {
console.log('normal');
let scaleX = internalWidth;
let scaleY = internalHeight;
crop.x = crop.x * scaleX;
crop.y = crop.y * scaleY;
crop.width = crop.width * scaleX;
crop.height = crop.height * scaleY;
}
else {
let scaleX = video.videoWidth / internalWidth;
let scaleY = video.videoHeight / internalHeight;
crop.x = crop.x / scaleX;
crop.y = crop.y / scaleY;
crop.width = crop.width / scaleX;
crop.height = crop.height / scaleY;
}
return crop;
};
const roundTo4Digits = (currAspectRatioNumber) => {
return Math.round(currAspectRatioNumber * 10000) / 10000;
}
// window.addEventListener("load", async function (event) {
// // console.log(video.readyState);
// //TODO: Disable like 90% of the weird double click and drag functionality holy crap
// });
ipcRenderer.on('crop_data', async (event, arg) => {
console.log('Crop data event captured: ' + arg);
let cropDetailsAndClip = JSON.parse(arg);
let cropDetails = cropDetailsAndClip.cropDetails;
let clip = cropDetailsAndClip.clip;
let callback = cropDetailsAndClip.callback;
let cropType = cropDetailsAndClip.cropType;
console.log(
'clip crop details' +
JSON.stringify(cropDetails) +
' ' +
JSON.stringify(cropDetailsAndClip)
);
console.log('loaded');
// get current crop settings /settings from backend
if (cropDetails == null || Object.keys(cropDetails).length == 0) {
console.log('no crop details found');
cropDetails = await fetch('http://localhost:42074/settings').then((res) =>
res.json()
);
console.log(
'got crop details from settings:' +
JSON.stringify(cropDetails?.camCrop) +
JSON.stringify(cropDetails?.screenCrop)
);
}
if (clip == null) {
console.log('no clip found');
let clipsResult = await fetch('http://localhost:42074/clip/last').then(
(res) => res.json()
);
clip = clipsResult?.clip;
}
console.log(JSON.stringify(clip));
//check if current clip is in allClips
let clipToDisplay = 'https://share.nyx.xyz/reWKYeJmokM';
if (clip != null) {
clipToDisplay = clip.download_url;
}
const video = document.querySelector('video');
video.src = clipToDisplay;
let baseCamCrop = cropDetails.camCrop;
let baseScreenCrop = cropDetails.screenCrop;
let ipcRenderer = window.ipcRenderer;
if (window.camData) {
console.log(JSON.stringify(camData));
}
const image = document.getElementById('cropCanvas');
console.log(image);
// start video stuff
const canvas = image; //document.querySelector("#cropthing");
// canvas.width = window.innerWidth;
// canvas.height = "531px";
const ctx = canvas.getContext('2d');
let haveRunCropperStuff = false;
video.addEventListener('readystatechange', function () {
console.log('ready state changed');
console.log('readyState: ' + video.readyState);
if (video.readyState === 4 && haveRunCropperStuff === false) {
console.log(video);
haveRunCropperStuff = true;
doAllCropperStuff(
baseCamCrop,
baseScreenCrop,
video,
isScreenvas,
callback,
canvas,
clip,
cropType
);
console.log('did stuff');
}
});
video.addEventListener('loadeddata', function () {
console.log('loaded data ' + video.readyState);
if (video.readyState > 0 && haveRunCropperStuff === false) {
haveRunCropperStuff = true;
doAllCropperStuff(
baseCamCrop,
baseScreenCrop,
video,
isScreenvas,
callback,
canvas,
image,
clip,
cropType
);
}
});
video.addEventListener('loadedmetadata', function () {
if (video.readyState > 0 && haveRunCropperStuff === false) {
haveRunCropperStuff = true;
doAllCropperStuff(
baseCamCrop,
baseScreenCrop,
video,
isScreenvas,
callback,
canvas,
image,
clip,
cropType
);
}
console.log('loaded metadata ' + video.readyState);
});
if (video.readyState === 4 && haveRunCropperStuff === false) {
haveRunCropperStuff = true;
console.log(video);
doAllCropperStuff(
baseCamCrop,
baseScreenCrop,
video,
isScreenvas,
callback,
canvas,
image,
clip,
cropType
);
console.log('did stuff');
}
});
let doAllCropperStuff = (
baseCamCrop,
baseScreenCrop,
video,
isScreenvas,
callback,
canvas,
image,
clip,
cropType
) => {
console.log('video height' + video.videoHeight);
console.log('video width' + video.videoWidth);
let camCrop = baseCamCrop?.width ? scaleDownCrop(baseCamCrop, video) : {};
let screenCrop = baseScreenCrop?.width
? scaleDownCrop(baseScreenCrop, video)
: {};
canvas.width = video.clientWidth;
canvas.height = video.clientHeight;
let cropper = new Cropper(image, {
viewMode: 1,
dragMode: 'crop',
// preview: '.preview',
data: isScreenvas ? screenCrop : camCrop,
zoomable: false,
background: false,
modal: false,
highlight: false,
crop(event) {
currCropDetails = {
x: event.detail.x,
y: event.detail.y,
width: event.detail.width,
height: event.detail.height,
scaleX: event.detail.scaleX,
scaleY: event.detail.scaleY,
};
console.log(JSON.stringify(currCropDetails));
},
});
//TODO: DELETE
// window.cropper = cropper;
console.log(cropper);
let currAspectRatioNumber = 16 / 9;
let currRatio = roundTo4Digits(16/9);
cropper.setAspectRatio(16 / 9);
if (!camCrop?.width) {
console.log('setting aspect ratio');
cropper.setAspectRatio(16 / 9);
} else {
if (!isScreenvas) {
console.log('is not screenvas');
cropper.setAspectRatio(camCrop.width / camCrop.height);
currAspectRatioNumber = camCrop.width / camCrop.height;
currRatio = roundTo4Digits(currAspectRatioNumber);
}
}
if(cropType === 'no-cam') {
document.querySelector('h1').innerHTML = 'Select Your Gameplay Area';
}
const doneButton = document.getElementById('done');
const doneFunc = () => {
console.log('done clicked');
ipcRenderer.send(
'camvas_closed',
JSON.stringify({
cropDetails: {
camCrop: scaleUpCrop(camCrop, video),
screenCrop: scaleUpCrop(screenCrop, video),
cropType: cropType,
isNormalized: true,
},
camData: cropType !== 'cam-top' && cropType !== 'cam-freeform' ? scaleUpCrop(currCropDetails, video) : currCropDetails,
callback: callback,
isNormalized: true,
clip: clip,
cropType: cropType,
})
);
window.close();
};
doneButton.addEventListener('click', doneFunc);
//setAspectRatio
const ratioButton = document.getElementById('ratio');
if(cropType == 'no-cam') {
ratioButton.style.display = 'none';
currAspectRatioNumber = 9 / 16;
currRatio = roundTo4Digits(currAspectRatioNumber);
cropper.setAspectRatio(currAspectRatioNumber);
console.log('no-cam activated');
}
else if(cropType == 'freeform') {
ratioButton.style.display = 'none';
currAspectRatioNumber = NaN;
currRatio = NaN;
cropper.setAspectRatio(NaN);
}
else if(currRatio == roundTo4Digits(9/16)) {
console.log('Changing ratio back');
currAspectRatioNumber = 16 / 9;
currRatio = roundTo4Digits(currAspectRatioNumber);
cropper.setAspectRatio(currAspectRatioNumber);
console.log('Ratio fixed');
}
else {
console.log('aspect ratio: ' + cropper.aspectRatio);
}
ratioButton.addEventListener('click', () => {
console.log('ratio clicked');
// let ipcRenderer = window.ipcRenderer;
// ipcRenderer.send('canvas_closed', JSON.stringify(currCropDetails));
// window.close();
if (currRatio == roundTo4Digits(16/9)) {
currAspectRatioNumber = 4 / 3;
currRatio = roundTo4Digits(currAspectRatioNumber);
} else {
currAspectRatioNumber = 16 / 9;
currRatio = roundTo4Digits(currAspectRatioNumber);
}
cropper.setAspectRatio(currAspectRatioNumber);
});
// set aspect ratio based on the ratio of the cam data detected in the event
let screenvasDataProcessor = (event, arg) => {
console.log("OH NO IT'S NOT THE CAMERA");
document.getElementById('ratio').style.display = 'none';
document.querySelector('h1').innerHTML = 'Select Your Gameplay Area';
const cropData = JSON.parse(arg);
const camData = cropData.camData;
const cropType = cropData.cropType;
const callback = cropData.callback; //new data from cam
let aspectRatio = 1080 / 1320;
console.log(camData);
if (camData && cropType == 'cam-freeform') {
cropper.setAspectRatio(NaN);
}
else if (camData) {
if (camData.width / camData.height < 1.5) {
aspectRatio = 1080 / 1110;
}
// calculate aspect ratio based on camdata width and height
cropper.setAspectRatio(aspectRatio);
}
// log camData camCrop and screenCrop
console.log(
`${
JSON.stringify(camData) +
JSON.stringify(camCrop) +
JSON.stringify(screenCrop)
}`
);
if (
camData.width == camCrop.width &&
camData.height == camCrop.height &&
camData.x == camCrop.x &&
camData.y == camCrop.y &&
screenCrop
) {
//no change in cam
console.log('should show screencrop' + JSON.stringify(screenCrop));
cropper.setData({ x: screenCrop.x, y: screenCrop.y });
cropper.setData({ width: screenCrop.width, height: screenCrop.height });
console.log(JSON.stringify(cropper.data));
}
let doneButton = document.getElementById('done');
//remove all event listeners from doneButton
doneButton.removeEventListener('click', doneFunc);
// add new event listeners to doneButton
doneButton.addEventListener('click', () => {
console.log('done clicked');
ipcRenderer.send(
'screenvas_closed',
JSON.stringify({
camCrop: scaleUpCrop(camData, video),
screenCrop: scaleUpCrop(currCropDetails, video),
isNormalized: true,
callback: callback,
cropType: cropType,
})
);
window.close();
});
};
if (isScreenvas) {
screenvasDataProcessor(undefined, screenvasData);
} else {
ipcRenderer.on('screenvas_data', screenvasDataProcessor);
}
};