-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparse-key-mappings.php
More file actions
35 lines (26 loc) · 911 Bytes
/
Copy pathparse-key-mappings.php
File metadata and controls
35 lines (26 loc) · 911 Bytes
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
#!/usr/bin/env php
<?php
declare(strict_types=1);
require __DIR__ . '/../vendor/autoload.php';
use ProPresenter\Parser\KeyMappingsFileReader;
if ($argc < 2) {
echo "Usage: parse-key-mappings.php <KeyMappings>\n";
exit(1);
}
$filePath = $argv[1];
try {
$library = KeyMappingsFileReader::read($filePath);
} catch (Exception $e) {
echo "Error: " . $e->getMessage() . "\n";
exit(1);
}
$mappings = $library->getMappings();
echo "KeyMappings (" . count($mappings) . "):\n";
foreach ($mappings as $index => $mapping) {
$number = $index + 1;
$name = $mapping->getName();
$displayName = $name === '' ? '(unnamed)' : $name;
$uuid = $mapping->getUuid();
$hotKeyPart = $mapping->getHotKey() === null ? '(no hot key)' : 'hot_key=yes';
echo sprintf(" [%d] %s :: %s :: target_bytes=%d :: %s\n", $number, $displayName, $uuid, strlen($mapping->getTarget()), $hotKeyPart);
}