diff options
Diffstat (limited to 'tools/datapacker')
-rw-r--r-- | tools/datapacker/container.cpp | 17 | ||||
-rw-r--r-- | tools/datapacker/container.h | 3 | ||||
-rw-r--r-- | tools/datapacker/main.cpp | 34 |
3 files changed, 51 insertions, 3 deletions
diff --git a/tools/datapacker/container.cpp b/tools/datapacker/container.cpp index 624caf8..4a656b3 100644 --- a/tools/datapacker/container.cpp +++ b/tools/datapacker/container.cpp | |||
@@ -348,6 +348,23 @@ uint64_t Container::FindOrAddProgressive(std::string prog_name) { | |||
348 | } | 348 | } |
349 | } | 349 | } |
350 | 350 | ||
351 | uint64_t Container::FindOrAddDoorGroup(std::string group_name) { | ||
352 | auto it = door_group_id_by_name_.find(group_name); | ||
353 | |||
354 | if (it == door_group_id_by_name_.end()) { | ||
355 | uint64_t new_id = all_objects_.door_groups_size(); | ||
356 | DoorGroup* door_group = all_objects_.add_door_groups(); | ||
357 | door_group->set_id(new_id); | ||
358 | door_group->set_name(group_name); | ||
359 | |||
360 | door_group_id_by_name_[group_name] = new_id; | ||
361 | |||
362 | return new_id; | ||
363 | } else { | ||
364 | return it->second; | ||
365 | } | ||
366 | } | ||
367 | |||
351 | void Container::AddConnection(const Connection& connection) { | 368 | void Container::AddConnection(const Connection& connection) { |
352 | *all_objects_.add_connections() = connection; | 369 | *all_objects_.add_connections() = connection; |
353 | } | 370 | } |
diff --git a/tools/datapacker/container.h b/tools/datapacker/container.h index 8cec560..bc02ba4 100644 --- a/tools/datapacker/container.h +++ b/tools/datapacker/container.h | |||
@@ -62,6 +62,8 @@ class Container { | |||
62 | 62 | ||
63 | uint64_t FindOrAddProgressive(std::string prog_name); | 63 | uint64_t FindOrAddProgressive(std::string prog_name); |
64 | 64 | ||
65 | uint64_t FindOrAddDoorGroup(std::string group_name); | ||
66 | |||
65 | AllObjects& all_objects() { return all_objects_; } | 67 | AllObjects& all_objects() { return all_objects_; } |
66 | 68 | ||
67 | private: | 69 | private: |
@@ -85,6 +87,7 @@ class Container { | |||
85 | door_id_by_map_door_names_; | 87 | door_id_by_map_door_names_; |
86 | std::map<std::string, uint64_t> ending_id_by_name_; | 88 | std::map<std::string, uint64_t> ending_id_by_name_; |
87 | std::map<std::string, uint64_t> progressive_id_by_name_; | 89 | std::map<std::string, uint64_t> progressive_id_by_name_; |
90 | std::map<std::string, uint64_t> door_group_id_by_name_; | ||
88 | }; | 91 | }; |
89 | 92 | ||
90 | } // namespace com::fourisland::lingo2_archipelago | 93 | } // namespace com::fourisland::lingo2_archipelago |
diff --git a/tools/datapacker/main.cpp b/tools/datapacker/main.cpp index 595647d..c640de6 100644 --- a/tools/datapacker/main.cpp +++ b/tools/datapacker/main.cpp | |||
@@ -44,6 +44,7 @@ class DataPacker { | |||
44 | ProcessConnectionsFile(datadir_path / "connections.txtpb", std::nullopt); | 44 | ProcessConnectionsFile(datadir_path / "connections.txtpb", std::nullopt); |
45 | ProcessMaps(datadir_path); | 45 | ProcessMaps(datadir_path); |
46 | ProcessProgressivesFile(datadir_path / "progressives.txtpb"); | 46 | ProcessProgressivesFile(datadir_path / "progressives.txtpb"); |
47 | ProcessDoorGroupsFile(datadir_path / "door_groups.txtpb"); | ||
47 | ProcessIdsFile(datadir_path / "ids.yaml"); | 48 | ProcessIdsFile(datadir_path / "ids.yaml"); |
48 | 49 | ||
49 | { | 50 | { |
@@ -343,9 +344,6 @@ class DataPacker { | |||
343 | std::copy( | 344 | std::copy( |
344 | h_door.receivers().begin(), h_door.receivers().end(), | 345 | h_door.receivers().begin(), h_door.receivers().end(), |
345 | google::protobuf::RepeatedFieldBackInserter(door.mutable_receivers())); | 346 | google::protobuf::RepeatedFieldBackInserter(door.mutable_receivers())); |
346 | std::copy( | ||
347 | h_door.switches().begin(), h_door.switches().end(), | ||
348 | google::protobuf::RepeatedFieldBackInserter(door.mutable_switches())); | ||
349 | 347 | ||
350 | for (const PaintingIdentifier& pi : h_door.move_paintings()) { | 348 | for (const PaintingIdentifier& pi : h_door.move_paintings()) { |
351 | std::optional<std::string> map_name = | 349 | std::optional<std::string> map_name = |
@@ -577,6 +575,31 @@ class DataPacker { | |||
577 | } | 575 | } |
578 | } | 576 | } |
579 | 577 | ||
578 | void ProcessDoorGroupsFile(std::filesystem::path path) { | ||
579 | if (!std::filesystem::exists(path)) { | ||
580 | return; | ||
581 | } | ||
582 | |||
583 | auto h_groups = ReadMessageFromFile<HumanDoorGroups>(path.string()); | ||
584 | |||
585 | for (const HumanDoorGroup& h_group : h_groups.door_groups()) { | ||
586 | ProcessDoorGroup(h_group); | ||
587 | } | ||
588 | } | ||
589 | |||
590 | void ProcessDoorGroup(const HumanDoorGroup& h_group) { | ||
591 | uint64_t group_id = container_.FindOrAddDoorGroup(h_group.name()); | ||
592 | DoorGroup& group = *container_.all_objects().mutable_door_groups(group_id); | ||
593 | |||
594 | group.set_type(h_group.type()); | ||
595 | |||
596 | for (const DoorIdentifier& di : h_group.doors()) { | ||
597 | uint64_t door_id = | ||
598 | container_.FindOrAddDoor(di.map(), di.name(), std::nullopt); | ||
599 | group.add_doors(door_id); | ||
600 | } | ||
601 | } | ||
602 | |||
580 | void ProcessIdsFile(std::filesystem::path path) { | 603 | void ProcessIdsFile(std::filesystem::path path) { |
581 | auto ids = ReadIdsFromYaml(path.string()); | 604 | auto ids = ReadIdsFromYaml(path.string()); |
582 | 605 | ||
@@ -631,6 +654,11 @@ class DataPacker { | |||
631 | uint64_t prog_id = container_.FindOrAddProgressive(prog_name); | 654 | uint64_t prog_id = container_.FindOrAddProgressive(prog_name); |
632 | container_.all_objects().mutable_progressives(prog_id)->set_ap_id(ap_id); | 655 | container_.all_objects().mutable_progressives(prog_id)->set_ap_id(ap_id); |
633 | } | 656 | } |
657 | |||
658 | for (const auto& [group_name, ap_id] : ids.door_groups()) { | ||
659 | uint64_t group_id = container_.FindOrAddDoorGroup(group_name); | ||
660 | container_.all_objects().mutable_door_groups(group_id)->set_ap_id(ap_id); | ||
661 | } | ||
634 | } | 662 | } |
635 | 663 | ||
636 | std::string mapdir_; | 664 | std::string mapdir_; |