Mirrors the Macros reader: LabelsFileReader -> LabelLibrary -> Label wraps the protobuf ProLabelsDocument and exposes each label's name (the proto 'text' field) plus optional RGBA color with a #RRGGBB hex helper. Includes CLI tool, PHPUnit suite against the bundled reference Labels sample, and api/labels.md docs.
48 lines
1 KiB
PHP
Executable file
48 lines
1 KiB
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use ProPresenter\Parser\LabelsFileReader;
|
|
|
|
if ($argc < 2) {
|
|
echo "Usage: parse-labels.php <Labels>\n";
|
|
exit(1);
|
|
}
|
|
|
|
$filePath = $argv[1];
|
|
|
|
try {
|
|
$library = LabelsFileReader::read($filePath);
|
|
} catch (Exception $e) {
|
|
echo "Error: " . $e->getMessage() . "\n";
|
|
exit(1);
|
|
}
|
|
|
|
$labels = $library->getLabels();
|
|
|
|
echo "Labels (" . count($labels) . "):\n";
|
|
foreach ($labels as $index => $label) {
|
|
$number = $index + 1;
|
|
$name = $label->getName();
|
|
$displayName = $name === '' ? '(unnamed)' : $name;
|
|
|
|
if ($label->hasColor()) {
|
|
$color = $label->getColor();
|
|
$colorPart = sprintf(
|
|
'%s rgba(%.3f, %.3f, %.3f, %.3f)',
|
|
$label->getColorHex(),
|
|
$color['r'],
|
|
$color['g'],
|
|
$color['b'],
|
|
$color['a'],
|
|
);
|
|
} else {
|
|
$colorPart = '(no color)';
|
|
}
|
|
|
|
echo sprintf(" [%d] %s :: %s\n", $number, $displayName, $colorPart);
|
|
}
|