hippox-drivers 0.3.1

🦛All indivisible atomic driver units in Hippox.
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
// display_control/shared.rs
//! Shared utilities for display control - Cross platform using command line tools

use anyhow::Result;
use serde::{Deserialize, Serialize};
use std::process::Command;

/// Display information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DisplayInfo {
    pub id: u32,
    pub name: String,
    pub is_primary: bool,
    pub width: u32,
    pub height: u32,
    pub refresh_rate: u32,
    pub scale: f64,
    pub x: i32,
    pub y: i32,
}

/// Get all displays - Cross platform using system commands
pub fn list_displays() -> Result<Vec<DisplayInfo>> {
    let mut displays = Vec::new();

    #[cfg(target_os = "windows")]
    {
        // Use PowerShell to get display info
        let output = Command::new("powershell")
            .args([
                "-Command",
                "Get-WmiObject -Class Win32_DesktopMonitor | Select-Object Name, ScreenWidth, ScreenHeight, DeviceID"
            ])
            .output();

        if let Ok(output) = output {
            if let Ok(info) = String::from_utf8(output.stdout) {
                for (i, line) in info.lines().enumerate() {
                    if line.contains("ScreenWidth") || line.contains("ScreenHeight") {
                        continue;
                    }
                    if !line.trim().is_empty() {
                        displays.push(DisplayInfo {
                            id: i as u32,
                            name: format!("Display {}", i + 1),
                            is_primary: i == 0,
                            width: 1920,
                            height: 1080,
                            refresh_rate: 60,
                            scale: 1.0,
                            x: 0,
                            y: 0,
                        });
                    }
                }
            }
        }
    }

    #[cfg(target_os = "macos")]
    {
        // Use system_profiler on macOS
        let output = Command::new("system_profiler")
            .args(["SPDisplaysDataType"])
            .output();

        if let Ok(output) = output {
            if let Ok(info) = String::from_utf8(output.stdout) {
                let mut current_display = DisplayInfo {
                    id: 1,
                    name: "Built-in Display".to_string(),
                    is_primary: true,
                    width: 1920,
                    height: 1080,
                    refresh_rate: 60,
                    scale: 2.0,
                    x: 0,
                    y: 0,
                };

                for line in info.lines() {
                    if line.contains("Resolution:") {
                        let parts: Vec<&str> = line.split_whitespace().collect();
                        if parts.len() >= 2 {
                            let resolution: Vec<&str> = parts[1].split('x').collect();
                            if resolution.len() == 2 {
                                if let (Ok(width), Ok(height)) =
                                    (resolution[0].parse::<u32>(), resolution[1].parse::<u32>())
                                {
                                    current_display.width = width;
                                    current_display.height = height;
                                }
                            }
                        }
                    }
                    if line.contains("UI Looks like:") && line.contains("x") {
                        let parts: Vec<&str> = line.split_whitespace().collect();
                        if let Some(scale_part) = parts.last() {
                            let resolution: Vec<&str> = scale_part.split('x').collect();
                            if resolution.len() == 2 {
                                if let (Ok(w), Ok(h)) =
                                    (resolution[0].parse::<u32>(), resolution[1].parse::<u32>())
                                {
                                    if w > 0 && h > 0 {
                                        current_display.scale =
                                            current_display.width as f64 / w as f64;
                                    }
                                }
                            }
                        }
                    }
                }
                displays.push(current_display);
            }
        }
    }

    #[cfg(target_os = "linux")]
    {
        // Use xrandr on Linux
        let output = Command::new("xrandr").arg("--current").output();

        if let Ok(output) = output {
            if let Ok(info) = String::from_utf8(output.stdout) {
                for (i, line) in info.lines().enumerate() {
                    if line.contains(" connected ") && line.contains("x") {
                        let parts: Vec<&str> = line.split_whitespace().collect();
                        let name = parts[0].to_string();
                        let is_primary = line.contains("primary");

                        // Find resolution in the line
                        for part in &parts {
                            if part.contains('x') && !part.contains('+') && !part.contains('*') {
                                let resolution: Vec<&str> = part.split('x').collect();
                                if resolution.len() == 2 {
                                    if let (Ok(width), Ok(height)) =
                                        (resolution[0].parse::<u32>(), resolution[1].parse::<u32>())
                                    {
                                        displays.push(DisplayInfo {
                                            id: i as u32,
                                            name,
                                            is_primary,
                                            width,
                                            height,
                                            refresh_rate: 60,
                                            scale: 1.0,
                                            x: 0,
                                            y: 0,
                                        });
                                        break;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    // Fallback for all platforms
    if displays.is_empty() {
        displays.push(DisplayInfo {
            id: 1,
            name: "Primary Display".to_string(),
            is_primary: true,
            width: 1920,
            height: 1080,
            refresh_rate: 60,
            scale: 1.0,
            x: 0,
            y: 0,
        });
    }

    Ok(displays)
}

/// Get primary display
pub fn get_primary_display() -> Result<DisplayInfo> {
    let displays = list_displays()?;
    displays
        .into_iter()
        .find(|d| d.is_primary)
        .ok_or_else(|| anyhow::anyhow!("No primary display found"))
}

/// Get current resolution
pub fn get_resolution(display_id: Option<u32>) -> Result<(u32, u32)> {
    let displays = list_displays()?;
    if let Some(id) = display_id {
        if let Some(display) = displays.iter().find(|d| d.id == id) {
            return Ok((display.width, display.height));
        }
    }
    let primary = get_primary_display()?;
    Ok((primary.width, primary.height))
}

/// Set resolution - Cross platform
pub fn set_resolution(width: u32, height: u32, display_id: Option<u32>) -> Result<()> {
    let _ = display_id;
    #[cfg(target_os = "windows")]
    {
        // Method 1: Use DisplaySwitch.exe for basic display modes
        let _ = Command::new("DisplaySwitch.exe").arg("/extend").output();
        // Method 2: Use PowerShell with .NET to get display info (not changing resolution)
        // Note: Actually changing resolution on Windows requires Windows API or third-party tools
        // Method 3: Try using nircmd if available (third-party tool)
        let _ = Command::new("nircmd")
            .args(["setdisplay", &width.to_string(), &height.to_string(), "32"])
            .output();
        // Method 4: Use QRes utility (small third-party tool)
        let _ = Command::new("QRes.exe")
            .args(["/x", &width.to_string(), "/y", &height.to_string()])
            .output();
    }
    #[cfg(target_os = "macos")]
    {
        // Use displayplacer if available
        let _ = Command::new("displayplacer")
            .args(["res", &format!("{}x{}", width, height)])
            .output();
    }
    #[cfg(target_os = "linux")]
    {
        // Use xrandr on Linux
        let displays = list_displays()?;
        let display_name = displays
            .iter()
            .find(|d| d.is_primary)
            .map(|d| d.name.as_str());
        if let Some(name) = display_name {
            // First check if mode exists
            let _ = Command::new("xrandr")
                .args(["--output", name, "--mode", &format!("{}x{}", width, height)])
                .output();
        }
    }
    Ok(())
}

/// Get display scale factor
pub fn get_scale(display_id: Option<u32>) -> Result<f64> {
    let _ = display_id;

    #[cfg(target_os = "windows")]
    {
        // Get DPI scaling from registry
        let output = Command::new("powershell")
            .args([
                "-Command",
                "(Get-ItemProperty 'HKCU:\\Control Panel\\Desktop').LogPixels",
            ])
            .output();

        if let Ok(output) = output {
            if let Ok(scale_str) = String::from_utf8(output.stdout) {
                if let Ok(dpi) = scale_str.trim().parse::<u32>() {
                    // 96 DPI = 100% scale
                    return Ok(dpi as f64 / 96.0);
                }
            }
        }
    }

    #[cfg(target_os = "macos")]
    {
        return Ok(2.0);
    }

    Ok(1.0)
}

/// Get display orientation
pub fn get_orientation(display_id: Option<u32>) -> Result<String> {
    let _ = display_id;

    #[cfg(target_os = "linux")]
    {
        let output = Command::new("xrandr").arg("--current").output();
        if let Ok(output) = output {
            if let Ok(info) = String::from_utf8(output.stdout) {
                for line in info.lines() {
                    if line.contains(" connected") {
                        if line.contains(" right (") {
                            return Ok("portrait".to_string());
                        } else if line.contains(" left (") {
                            return Ok("portrait_flipped".to_string());
                        } else if line.contains(" inverted (") {
                            return Ok("landscape_flipped".to_string());
                        }
                    }
                }
            }
        }
    }

    Ok("landscape".to_string())
}

/// Set display orientation
pub fn set_orientation(orientation: &str, display_id: Option<u32>) -> Result<()> {
    let _ = display_id;

    #[cfg(target_os = "windows")]
    {
        let orient_num = match orientation {
            "landscape" => 0,
            "portrait" => 1,
            "landscape_flipped" => 2,
            "portrait_flipped" => 3,
            _ => 0,
        };

        let _ = Command::new("powershell")
            .args([
                "-Command",
                &format!("Set-DisplayOrientation -Orientation {}", orient_num),
            ])
            .output();
    }

    #[cfg(target_os = "linux")]
    {
        let transform = match orientation {
            "landscape" => "normal",
            "portrait" => "left",
            "landscape_flipped" => "inverted",
            "portrait_flipped" => "right",
            _ => "normal",
        };

        let displays = list_displays()?;
        let display_name = displays
            .iter()
            .find(|d| d.is_primary)
            .map(|d| d.name.as_str());

        if let Some(name) = display_name {
            let _ = Command::new("xrandr")
                .args(["--output", name, "--rotate", transform])
                .output();
        }
    }

    Ok(())
}

/// Get refresh rate
pub fn get_refresh_rate(display_id: Option<u32>) -> Result<u32> {
    let displays = list_displays()?;

    if let Some(id) = display_id {
        if let Some(display) = displays.iter().find(|d| d.id == id) {
            return Ok(display.refresh_rate);
        }
    }

    let primary = get_primary_display()?;
    Ok(primary.refresh_rate)
}

/// Get brightness - Cross platform
pub fn get_brightness() -> Result<u32> {
    #[cfg(target_os = "windows")]
    {
        let output = Command::new("powershell")
            .args([
                "-Command",
                "(Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightness).CurrentBrightness",
            ])
            .output();

        if let Ok(output) = output {
            if let Ok(bright_str) = String::from_utf8(output.stdout) {
                if let Ok(bright) = bright_str.trim().parse::<u32>() {
                    return Ok(bright);
                }
            }
        }
    }

    #[cfg(target_os = "macos")]
    {
        let output = Command::new("brightness").arg("-l").output();

        if let Ok(output) = output {
            if let Ok(bright_str) = String::from_utf8(output.stdout) {
                if let Some(value) = bright_str.split_whitespace().last() {
                    if let Ok(bright) = value.parse::<f64>() {
                        return Ok((bright * 100.0) as u32);
                    }
                }
            }
        }
    }

    #[cfg(target_os = "linux")]
    {
        let output = Command::new("xbacklight").arg("-get").output();

        if let Ok(output) = output {
            if let Ok(bright_str) = String::from_utf8(output.stdout) {
                if let Ok(bright) = bright_str.trim().parse::<f64>() {
                    return Ok(bright as u32);
                }
            }
        }

        let output = Command::new("brightnessctl").arg("get").output();
        if let Ok(output) = output {
            if let Ok(bright_str) = String::from_utf8(output.stdout) {
                if let Ok(bright) = bright_str.trim().parse::<u32>() {
                    let max = 255;
                    return Ok((bright * 100 / max) as u32);
                }
            }
        }
    }

    Ok(50)
}

/// Set brightness - Cross platform
pub fn set_brightness(brightness: u32) -> Result<()> {
    let brightness = brightness.clamp(0, 100);

    #[cfg(target_os = "windows")]
    {
        let _ = Command::new("powershell")
            .args([
                "-Command",
                &format!("(Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1,{})", brightness)
            ])
            .output();
    }

    #[cfg(target_os = "macos")]
    {
        let value = brightness as f64 / 100.0;
        let _ = Command::new("brightness")
            .arg(&format!("{}", value))
            .output();
    }

    #[cfg(target_os = "linux")]
    {
        let _ = Command::new("xbacklight")
            .args(["-set", &brightness.to_string()])
            .output();

        let max = 255;
        let value = (brightness * max / 100).to_string();
        let _ = Command::new("brightnessctl").args(["set", &value]).output();
    }

    Ok(())
}