summaryrefslogtreecommitdiff
path: root/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Services/WlrOutputService.qml
blob: 655a4854f7b3570e8444e1d6fff47fb8195fb2fe (plain)
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
pragma Singleton
pragma ComponentBehavior: Bound

import QtQuick
import Quickshell

Singleton {
    id: root

    property bool wlrOutputAvailable: false
    property var outputs: []
    property int serial: 0

    signal stateChanged
    signal configurationApplied(bool success, string message)

    Connections {
        target: DMSService

        function onCapabilitiesReceived() {
            checkCapabilities();
        }

        function onConnectionStateChanged() {
            if (DMSService.isConnected) {
                checkCapabilities();
                return;
            }
            wlrOutputAvailable = false;
        }

        function onWlrOutputStateUpdate(data) {
            if (!wlrOutputAvailable) {
                return;
            }
            handleStateUpdate(data);
        }
    }

    Component.onCompleted: {
        if (!DMSService.dmsAvailable) {
            return;
        }
        checkCapabilities();
    }

    function checkCapabilities() {
        if (!DMSService.capabilities || !Array.isArray(DMSService.capabilities)) {
            wlrOutputAvailable = false;
            return;
        }

        const hasWlrOutput = DMSService.capabilities.includes("wlroutput");
        if (hasWlrOutput && !wlrOutputAvailable) {
            wlrOutputAvailable = true;
            console.info("WlrOutputService: wlr-output-management capability detected");
            requestState();
            return;
        }

        if (!hasWlrOutput) {
            wlrOutputAvailable = false;
        }
    }

    function requestState() {
        if (!DMSService.isConnected || !wlrOutputAvailable) {
            return;
        }

        DMSService.sendRequest("wlroutput.getState", null, response => {
            if (!response.result) {
                return;
            }
            handleStateUpdate(response.result);
        });
    }

    function handleStateUpdate(state) {
        outputs = state.outputs || [];
        serial = state.serial || 0;

        if (outputs.length === 0) {
            console.warn("WlrOutputService: Received empty outputs list");
        } else {
            console.log("WlrOutputService: Updated with", outputs.length, "outputs, serial:", serial);
            outputs.forEach((output, index) => {
                console.log("WlrOutputService: Output", index, "-", output.name, "enabled:", output.enabled, "mode:", output.currentMode ? output.currentMode.width + "x" + output.currentMode.height + "@" + (output.currentMode.refresh / 1000) + "Hz" : "none");
            });
        }
        stateChanged();
    }

    function getOutput(name) {
        for (const output of outputs) {
            if (output.name === name) {
                return output;
            }
        }
        return null;
    }

    function getEnabledOutputs() {
        return outputs.filter(output => output.enabled);
    }

    function applyConfiguration(heads, callback) {
        if (!DMSService.isConnected || !wlrOutputAvailable) {
            if (callback) {
                callback(false, "Not connected");
            }
            return;
        }

        console.log("WlrOutputService: Applying configuration for", heads.length, "outputs");
        heads.forEach((head, index) => {
            console.log("WlrOutputService: Head", index, "- name:", head.name, "enabled:", head.enabled, "modeId:", head.modeId, "customMode:", JSON.stringify(head.customMode), "position:", JSON.stringify(head.position), "scale:", head.scale, "transform:", head.transform, "adaptiveSync:", head.adaptiveSync);
        });

        DMSService.sendRequest("wlroutput.applyConfiguration", {
            "heads": heads
        }, response => {
            const success = !response.error;
            const message = response.error || response.result?.message || "";

            if (response.error) {
                console.warn("WlrOutputService: applyConfiguration error:", response.error);
            } else {
                console.log("WlrOutputService: Configuration applied successfully");
            }

            configurationApplied(success, message);
            if (callback) {
                callback(success, message);
            }
        });
    }

    function testConfiguration(heads, callback) {
        if (!DMSService.isConnected || !wlrOutputAvailable) {
            if (callback) {
                callback(false, "Not connected");
            }
            return;
        }

        console.log("WlrOutputService: Testing configuration for", heads.length, "outputs");

        DMSService.sendRequest("wlroutput.testConfiguration", {
            "heads": heads
        }, response => {
            const success = !response.error;
            const message = response.error || response.result?.message || "";

            if (response.error) {
                console.warn("WlrOutputService: testConfiguration error:", response.error);
            } else {
                console.log("WlrOutputService: Configuration test passed");
            }

            if (callback) {
                callback(success, message);
            }
        });
    }

    function setOutputEnabled(outputName, enabled, callback) {
        const output = getOutput(outputName);
        if (!output) {
            console.warn("WlrOutputService: Output not found:", outputName);
            if (callback) {
                callback(false, "Output not found");
            }
            return;
        }

        const heads = [
            {
                "name": outputName,
                "enabled": enabled
            }
        ];

        if (enabled && output.currentMode) {
            heads[0].modeId = output.currentMode.id;
        }

        applyConfiguration(heads, callback);
    }

    function setOutputMode(outputName, modeId, callback) {
        const heads = [
            {
                "name": outputName,
                "enabled": true,
                "modeId": modeId
            }
        ];

        applyConfiguration(heads, callback);
    }

    function setOutputCustomMode(outputName, width, height, refresh, callback) {
        const heads = [
            {
                "name": outputName,
                "enabled": true,
                "customMode": {
                    "width": width,
                    "height": height,
                    "refresh": refresh
                }
            }
        ];

        applyConfiguration(heads, callback);
    }

    function setOutputPosition(outputName, x, y, callback) {
        const heads = [
            {
                "name": outputName,
                "enabled": true,
                "position": {
                    "x": x,
                    "y": y
                }
            }
        ];

        applyConfiguration(heads, callback);
    }

    function setOutputScale(outputName, scale, callback) {
        const heads = [
            {
                "name": outputName,
                "enabled": true,
                "scale": scale
            }
        ];

        applyConfiguration(heads, callback);
    }

    function setOutputTransform(outputName, transform, callback) {
        const heads = [
            {
                "name": outputName,
                "enabled": true,
                "transform": transform
            }
        ];

        applyConfiguration(heads, callback);
    }

    function setOutputAdaptiveSync(outputName, state, callback) {
        const heads = [
            {
                "name": outputName,
                "enabled": true,
                "adaptiveSync": state
            }
        ];

        applyConfiguration(heads, callback);
    }

    function configureOutput(config, callback) {
        const heads = [config];
        applyConfiguration(heads, callback);
    }

    function configureMultipleOutputs(configs, callback) {
        applyConfiguration(configs, callback);
    }

    // High-level apply matching the generateOutputsConfig() pattern used by
    // NiriService, HyprlandService and DwlService.  Instead of writing a
    // config file, the changes are applied directly via the
    // wlr-output-management protocol.
    function applyOutputsConfig(outputsData, connectedOutputs) {
        if (!wlrOutputAvailable)
            return;
        const heads = [];
        for (const name in outputsData) {
            if (!connectedOutputs[name])
                continue;
            const output = outputsData[name];
            const mode = (output.modes && output.current_mode >= 0) ? output.modes[output.current_mode] : null;
            const enabled = !!mode;
            const head = {
                "name": name,
                "enabled": enabled
            };

            if (enabled) {
                if (mode.id !== undefined)
                    head.modeId = mode.id;
                else
                    head.customMode = {
                        "width": mode.width,
                        "height": mode.height,
                        "refresh": mode.refresh_rate
                    };

                if (output.logical) {
                    head.position = {
                        "x": output.logical.x ?? 0,
                        "y": output.logical.y ?? 0
                    };
                    head.scale = output.logical.scale ?? 1.0;
                    head.transform = transformFromName(output.logical.transform);
                }
            }
            heads.push(head);
        }

        if (heads.length > 0)
            applyConfiguration(heads);
    }

    function transformFromName(name) {
        switch (name) {
        case "Normal":
            return 0;
        case "90":
            return 1;
        case "180":
            return 2;
        case "270":
            return 3;
        case "Flipped":
            return 4;
        case "Flipped90":
            return 5;
        case "Flipped180":
            return 6;
        case "Flipped270":
            return 7;
        default:
            return 0;
        }
    }
}