propresenter-php/proto/cue.proto
Thorsten Bus 22ba4aff7d refactor: make repo Composer-compatible by moving php/ to root and ref/ to doc/reference_samples
- Move src/, tests/, bin/, generated/, proto/, composer.json, composer.lock, phpunit.xml from php/ to repo root
- Move ref/ to doc/reference_samples/ for better organization
- Remove vendor/ from git tracking (now properly gitignored)
- Update all test file paths (dirname adjustments and ref/ -> doc/reference_samples/)
- Update all documentation paths (AGENTS.md, doc/*.md)
- Remove php.bak/ directory
- All 252 tests pass
2026-03-30 13:26:29 +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;
}