propresenter7-php-lib/proto/cue.proto
Thorsten Buss 4d10db4f17 Initial public release
PHP 8.4 library and CLI tools to read, modify, and generate ProPresenter 7
files: songs (.pro), playlists (.proplaylist), bundles (.probundle), themes,
and the global library files (Macros, Labels, Groups, ClearGroups, CCLI,
Messages, Timers, Stage, Workspace, Props, TestPatterns, Calendar,
KeyMappings, CommunicationDevices).

Built on the MIT-licensed ProPresenter7-Proto schema by greyshirtguy
(v7.16.2). Includes 18 CLI parsers, comprehensive API docs in doc/,
binary-format specs, and a synthetic 369-test PHPUnit suite covering
RTF extraction, translation slides, ZIP64 repair, round-trip fidelity,
and end-to-end generation.
2026-05-03 22:21:01 +02:00

54 lines
1.3 KiB
Protocol Buffer
Executable file

syntax = "proto3";
package rv.data;
option cc_enable_arenas = true;
option csharp_namespace = "Pro.SerializationInterop.RVProtoData";
option swift_prefix = "RVData_";
import "action.proto";
import "hotKey.proto";
import "url.proto";
import "uuid.proto";
message Cue {
reserved 9;
message TimecodeTime {
double time = 1;
}
message PendingImportsEntry {
string key = 1;
.rv.data.URLs value = 2;
}
enum CompletionTargetType {
COMPLETION_TARGET_TYPE_NONE = 0;
COMPLETION_TARGET_TYPE_NEXT = 1;
COMPLETION_TARGET_TYPE_RANDOM = 2;
COMPLETION_TARGET_TYPE_CUE = 3;
COMPLETION_TARGET_TYPE_FIRST = 4;
}
enum CompletionActionType {
COMPLETION_ACTION_TYPE_FIRST = 0;
COMPLETION_ACTION_TYPE_LAST = 1;
COMPLETION_ACTION_TYPE_AFTER_ACTION = 2;
COMPLETION_ACTION_TYPE_AFTER_TIME = 3;
}
.rv.data.UUID uuid = 1;
string name = 2;
.rv.data.Cue.CompletionTargetType completion_target_type = 3;
.rv.data.UUID completion_target_uuid = 4;
.rv.data.Cue.CompletionActionType completion_action_type = 5;
.rv.data.UUID completion_action_uuid = 6;
.rv.data.Cue.TimecodeTime trigger_time = 7;
.rv.data.HotKey hot_key = 8;
repeated .rv.data.Action actions = 10;
repeated .rv.data.Cue.PendingImportsEntry pending_imports = 11;
bool isEnabled = 12;
double completion_time = 13;
}