summaryrefslogtreecommitdiff
path: root/lib/screens/mirrors.js
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2025-08-25 12:36:37 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2025-08-25 12:36:37 +0200
commite5de70f2c1dcac767bd34a6b90ac1797a7acb433 (patch)
tree25a8c8f339fb5b496b460391ee06a9effeb64855 /lib/screens/mirrors.js
parent6b909d95ec07848136a6f337db28318c1cd46c60 (diff)
parentd7bc21d19e168f3a99f54e5ba4866ed49f1187f1 (diff)
Merge branch 'rust'
Diffstat (limited to 'lib/screens/mirrors.js')
-rw-r--r--lib/screens/mirrors.js40
1 files changed, 0 insertions, 40 deletions
diff --git a/lib/screens/mirrors.js b/lib/screens/mirrors.js
deleted file mode 100644
index e842217..0000000
--- a/lib/screens/mirrors.js
+++ /dev/null
@@ -1,40 +0,0 @@
-'use strict';
-
-/**
- * Draws small moving gradient boxes and repeats them.
- *
- * @function MirrorsScreen
- * @implements IScreen
- */
-module.exports = function (modulation, width, height, renderer) {
-
- const response = [];
-
- const scale = 2 + Math.round(Math.random() * 4);
- const scaledHeight = Math.floor(height / scale);
- const scaledWidth = Math.floor(width / scale);
-
- for (let i = 0; i < scaledHeight; ++i) {
- const row = [];
- for (let j = 0; j < scaledWidth; ++j) {
- const red = ((modulation + i) * 255 / height) % 255;
- const blue = ((modulation + j) * 255 / width) % 255;
- const green = ((modulation + i * j) * 255 / (width * height)) % 255;
-
- const cell = [renderer(red, blue, green), ' '];
- row.push(cell.join(''));
- }
-
- let rowText = '';
- for (let j = 0; j < scale; ++j) {
- rowText += row.reverse().join('');
- }
-
- for (let j = 1; j < scale; ++j) {
- response[j * i] = rowText;
- response[(height - 1 - (j * i))] = rowText;
- }
- }
-
- return response.join('\n');
-};