Skip to content

Commit

Permalink
changed all instances of .bin to .guildpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
klingbolt committed Nov 13, 2024
1 parent 8eb6b41 commit a84e8d6
Show file tree
Hide file tree
Showing 45 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion xml_converter/integration_tests/make_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ mkdir -p test_cases/$1/input/pack

# Output folders and blank output files
mkdir -p test_cases/$1/output_proto
touch test_cases/$1/output_proto/markers.bin
touch test_cases/$1/output_proto/markers.guildpoint
mkdir -p test_cases/$1/output_xml
touch test_cases/$1/output_xml/xml_file.xml
4 changes: 2 additions & 2 deletions xml_converter/src/packaging_protobin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ void write_protobuf_file(
}

_write_protobuf_file(
join_file_paths(state.marker_pack_root_directory, "markers.bin"),
join_file_paths(state.marker_pack_root_directory, "markers.guildpoint"),
category_filter,
marker_categories,
category_to_pois,
Expand Down Expand Up @@ -266,7 +266,7 @@ void write_protobuf_file_per_map_id(
}

for (auto iterator = mapid_to_category_to_pois.begin(); iterator != mapid_to_category_to_pois.end(); iterator++) {
string output_filepath = join_file_paths(state.marker_pack_root_directory, to_string(iterator->first) + ".bin");
string output_filepath = join_file_paths(state.marker_pack_root_directory, to_string(iterator->first) + ".guildpoint");

_write_protobuf_file(
output_filepath,
Expand Down
2 changes: 1 addition & 1 deletion xml_converter/src/xml_converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void read_burrito_directory(
cout << "Error: " << input_path << " is not an existing directory or file" << endl;
}
else if (filesystem::is_directory(input_path)) {
vector<string> burrito_files = get_files_by_suffix(input_path, ".bin");
vector<string> burrito_files = get_files_by_suffix(input_path, ".guildpoint");
for (const string& path : burrito_files) {
read_protobuf_file(path, input_path, marker_categories, parsed_pois);
}
Expand Down

0 comments on commit a84e8d6

Please sign in to comment.