From c0c5431800d0306d01814e9902566c9b4fc9220b Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 7 Aug 2025 17:18:47 -0400 Subject: Assign AP IDs to doors and panels --- proto/data.proto | 2 ++ proto/human.proto | 13 +++++++++++++ 2 files changed, 15 insertions(+) (limited to 'proto') diff --git a/proto/data.proto b/proto/data.proto index 3417c4c..bea2563 100644 --- a/proto/data.proto +++ b/proto/data.proto @@ -23,6 +23,7 @@ message Connection { message Door { uint64 id = 1; + uint64 ap_id = 11; uint64 map_id = 9; uint64 room_id = 10; string name = 2; @@ -39,6 +40,7 @@ message Door { message Panel { uint64 id = 1; + uint64 ap_id = 10; uint64 room_id = 2; string name = 3; diff --git a/proto/human.proto b/proto/human.proto index d5d03ff..1dcf2ab 100644 --- a/proto/human.proto +++ b/proto/human.proto @@ -124,3 +124,16 @@ message HumanRoom { repeated Letter letters = 5; repeated HumanPort ports = 6; } + +message IdMappings { + message RoomIds { + map panels = 1; + } + + message MapIds { + map doors = 1; + map rooms = 2; + } + + map maps = 1; +} -- cgit 1.4.1