| 
									
										
										
										
											2023-02-26 19:19:15 -05:00
										 |  |  | """Update data script
 | 
					
						
							|  |  |  | This script can be used to assign new ids for the items and locations in the CSV file. It also regenerates the items | 
					
						
							|  |  |  | based on the resource packs. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | To run the script, use `python -m worlds.stardew_valley.scripts.update_data` from the repository root. | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import csv | 
					
						
							|  |  |  | import itertools | 
					
						
							|  |  |  | from pathlib import Path | 
					
						
							|  |  |  | from typing import List | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from worlds.stardew_valley import LocationData | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  | from worlds.stardew_valley.items import load_item_csv, Group, ItemData | 
					
						
							| 
									
										
										
										
											2025-02-01 16:07:08 -05:00
										 |  |  | from worlds.stardew_valley.locations import load_location_csv | 
					
						
							| 
									
										
										
										
											2023-02-26 19:19:15 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | RESOURCE_PACK_CODE_OFFSET = 5000 | 
					
						
							|  |  |  | script_folder = Path(__file__) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def write_item_csv(items: List[ItemData]): | 
					
						
							|  |  |  |     with open((script_folder.parent.parent / "data/items.csv").resolve(), "w", newline="") as file: | 
					
						
							|  |  |  |         writer = csv.DictWriter(file, ["id", "name", "classification", "groups"]) | 
					
						
							|  |  |  |         writer.writeheader() | 
					
						
							|  |  |  |         for item in items: | 
					
						
							|  |  |  |             item_dict = { | 
					
						
							|  |  |  |                 "id": item.code_without_offset, | 
					
						
							|  |  |  |                 "name": item.name, | 
					
						
							|  |  |  |                 "classification": item.classification.name, | 
					
						
							|  |  |  |                 "groups": ",".join(sorted(group.name for group in item.groups)) | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             writer.writerow(item_dict) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def write_location_csv(locations: List[LocationData]): | 
					
						
							|  |  |  |     with open((script_folder.parent.parent / "data/locations.csv").resolve(), "w", newline="") as file: | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |         write = csv.DictWriter(file, ["id", "region", "name", "tags", "mod_name"]) | 
					
						
							| 
									
										
										
										
											2023-02-26 19:19:15 -05:00
										 |  |  |         write.writeheader() | 
					
						
							|  |  |  |         for location in locations: | 
					
						
							|  |  |  |             location_dict = { | 
					
						
							|  |  |  |                 "id": location.code_without_offset, | 
					
						
							|  |  |  |                 "name": location.name, | 
					
						
							|  |  |  |                 "region": location.region, | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |                 "tags": ",".join(sorted(group.name for group in location.tags)), | 
					
						
							|  |  |  |                 "mod_name": location.mod_name | 
					
						
							| 
									
										
										
										
											2023-02-26 19:19:15 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |             write.writerow(location_dict) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     loaded_items = load_item_csv() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     item_counter = itertools.count(max(item.code_without_offset | 
					
						
							|  |  |  |                                        for item in loaded_items | 
					
						
							|  |  |  |                                        if Group.RESOURCE_PACK not in item.groups | 
					
						
							|  |  |  |                                        and item.code_without_offset is not None) + 1) | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     resource_pack_counter = itertools.count(max(item.code_without_offset | 
					
						
							| 
									
										
										
										
											2025-02-01 16:07:08 -05:00
										 |  |  |                                                 for item in loaded_items | 
					
						
							|  |  |  |                                                 if Group.RESOURCE_PACK in item.groups | 
					
						
							|  |  |  |                                                 and item.code_without_offset is not None) + 1) | 
					
						
							| 
									
										
										
										
											2023-02-26 19:19:15 -05:00
										 |  |  |     items_to_write = [] | 
					
						
							|  |  |  |     for item in loaded_items: | 
					
						
							|  |  |  |         if item.code_without_offset is None: | 
					
						
							| 
									
										
										
										
											2023-07-19 14:26:38 -04:00
										 |  |  |             if Group.RESOURCE_PACK in item.groups: | 
					
						
							|  |  |  |                 new_code = next(resource_pack_counter) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 new_code = next(item_counter) | 
					
						
							|  |  |  |             items_to_write.append(ItemData(new_code, item.name, item.classification, item.groups)) | 
					
						
							| 
									
										
										
										
											2023-02-26 19:19:15 -05:00
										 |  |  |             continue | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         items_to_write.append(item) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     write_item_csv(items_to_write) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     loaded_locations = load_location_csv() | 
					
						
							|  |  |  |     location_counter = itertools.count(max(location.code_without_offset | 
					
						
							|  |  |  |                                            for location in loaded_locations | 
					
						
							|  |  |  |                                            if location.code_without_offset is not None) + 1) | 
					
						
							|  |  |  |     locations_to_write = [] | 
					
						
							|  |  |  |     for location in loaded_locations: | 
					
						
							|  |  |  |         if location.code_without_offset is None: | 
					
						
							|  |  |  |             locations_to_write.append( | 
					
						
							| 
									
										
										
										
											2024-03-15 15:05:14 +03:00
										 |  |  |                 LocationData(next(location_counter), location.region, location.name, location.mod_name, location.tags)) | 
					
						
							| 
									
										
										
										
											2023-02-26 19:19:15 -05:00
										 |  |  |             continue | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         locations_to_write.append(location) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     write_location_csv(locations_to_write) |