| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | import typing | 
					
						
							|  |  |  | import math | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-17 03:23:27 +02:00
										 |  |  | from BaseClasses import Item, MultiWorld, Tutorial, ItemClassification | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  | from .Items import SA2BItem, ItemData, item_table, upgrades_table, emeralds_table, junk_table, trap_table, item_groups | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | from .Locations import SA2BLocation, all_locations, setup_locations | 
					
						
							|  |  |  | from .Options import sa2b_options | 
					
						
							|  |  |  | from .Regions import create_regions, shuffleable_regions, connect_regions, LevelGate, gate_0_whitelist_regions, \ | 
					
						
							|  |  |  |     gate_0_blacklist_regions | 
					
						
							|  |  |  | from .Rules import set_rules | 
					
						
							|  |  |  | from .Names import ItemName, LocationName | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  | from worlds.AutoWorld import WebWorld, World | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  | from .GateBosses import get_gate_bosses, get_boss_name | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  | from .Missions import get_mission_table, get_mission_count_table, get_first_and_last_cannons_core_missions | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  | import Patch | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SA2BWeb(WebWorld): | 
					
						
							|  |  |  |     theme = "partyTime" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     setup_en = Tutorial( | 
					
						
							|  |  |  |         "Multiworld Setup Guide", | 
					
						
							|  |  |  |         "A guide to setting up the Sonic Adventure 2: Battle randomizer connected to an Archipelago Multiworld.", | 
					
						
							|  |  |  |         "English", | 
					
						
							|  |  |  |         "setup_en.md", | 
					
						
							|  |  |  |         "setup/en", | 
					
						
							| 
									
										
										
										
											2023-01-07 04:00:19 -05:00
										 |  |  |         ["RaspberrySpaceJam", "PoryGone", "Entiss"] | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |     ) | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     tutorials = [setup_en] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  | def check_for_impossible_shuffle(shuffled_levels: typing.List[int], gate_0_range: int, multiworld: MultiWorld): | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |     blacklist_level_count = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for i in range(gate_0_range): | 
					
						
							|  |  |  |         if shuffled_levels[i] in gate_0_blacklist_regions: | 
					
						
							|  |  |  |             blacklist_level_count += 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if blacklist_level_count == gate_0_range: | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |         index_to_swap = multiworld.random.randint(0, gate_0_range) | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |         for i in range(len(shuffled_levels)): | 
					
						
							|  |  |  |             if shuffled_levels[i] in gate_0_whitelist_regions: | 
					
						
							|  |  |  |                 shuffled_levels[i], shuffled_levels[index_to_swap] = shuffled_levels[index_to_swap], shuffled_levels[i] | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SA2BWorld(World): | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2022-09-04 08:45:45 -04:00
										 |  |  |     Sonic Adventure 2 Battle is an action platforming game. Play as Sonic, Tails, Knuckles, Shadow, Rouge, and Eggman across 31 stages and prevent the destruction of the earth. | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     game: str = "Sonic Adventure 2 Battle" | 
					
						
							| 
									
										
										
										
											2022-08-15 16:46:59 -05:00
										 |  |  |     option_definitions = sa2b_options | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |     topology_present = False | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  |     data_version = 5 | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |     item_name_groups = item_groups | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |     item_name_to_id = {name: data.code for name, data in item_table.items()} | 
					
						
							|  |  |  |     location_name_to_id = all_locations | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |     location_table: typing.Dict[str, int] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |     music_map: typing.Dict[int, int] | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |     mission_map: typing.Dict[int, int] | 
					
						
							|  |  |  |     mission_count_map: typing.Dict[int, int] | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |     emblems_for_cannons_core: int | 
					
						
							|  |  |  |     region_emblem_map: typing.Dict[int, int] | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |     gate_costs: typing.Dict[int, int] | 
					
						
							|  |  |  |     gate_bosses: typing.Dict[int, int] | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |     web = SA2BWeb() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _get_slot_data(self): | 
					
						
							|  |  |  |         return { | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  |             "ModVersion": 201, | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |             "Goal": self.multiworld.goal[self.player].value, | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |             "MusicMap": self.music_map, | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |             "MissionMap": self.mission_map, | 
					
						
							|  |  |  |             "MissionCountMap": self.mission_count_map, | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |             "MusicShuffle": self.multiworld.music_shuffle[self.player].value, | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |             "Narrator": self.multiworld.narrator[self.player].value, | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  |             "MinigameTrapDifficulty": self.multiworld.minigame_trap_difficulty[self.player].value, | 
					
						
							|  |  |  |             "RingLoss": self.multiworld.ring_loss[self.player].value, | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |             "RequiredRank": self.multiworld.required_rank[self.player].value, | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |             "ChaoKeys": self.multiworld.keysanity[self.player].value, | 
					
						
							|  |  |  |             "Whistlesanity": self.multiworld.whistlesanity[self.player].value, | 
					
						
							|  |  |  |             "GoldBeetles": self.multiworld.beetlesanity[self.player].value, | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  |             "OmochaoChecks": self.multiworld.omosanity[self.player].value, | 
					
						
							|  |  |  |             "KartRaceChecks": self.multiworld.kart_race_checks[self.player].value, | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |             "ChaoRaceChecks": self.multiworld.chao_race_checks[self.player].value, | 
					
						
							|  |  |  |             "ChaoGardenDifficulty": self.multiworld.chao_garden_difficulty[self.player].value, | 
					
						
							|  |  |  |             "DeathLink": self.multiworld.death_link[self.player].value, | 
					
						
							|  |  |  |             "EmblemPercentageForCannonsCore": self.multiworld.emblem_percentage_for_cannons_core[self.player].value, | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |             "RequiredCannonsCoreMissions": self.multiworld.required_cannons_core_missions[self.player].value, | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |             "NumberOfLevelGates": self.multiworld.number_of_level_gates[self.player].value, | 
					
						
							|  |  |  |             "LevelGateDistribution": self.multiworld.level_gate_distribution[self.player].value, | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |             "EmblemsForCannonsCore": self.emblems_for_cannons_core, | 
					
						
							|  |  |  |             "RegionEmblemMap": self.region_emblem_map, | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |             "GateCosts": self.gate_costs, | 
					
						
							|  |  |  |             "GateBosses": self.gate_bosses, | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _create_items(self, name: str): | 
					
						
							|  |  |  |         data = item_table[name] | 
					
						
							| 
									
										
										
										
											2022-10-20 10:42:33 +02:00
										 |  |  |         return [self.create_item(name) for _ in range(data.quantity)] | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def fill_slot_data(self) -> dict: | 
					
						
							|  |  |  |         slot_data = self._get_slot_data() | 
					
						
							|  |  |  |         slot_data["MusicMap"] = self.music_map | 
					
						
							|  |  |  |         for option_name in sa2b_options: | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |             option = getattr(self.multiworld, option_name)[self.player] | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |             slot_data[option_name] = option.value | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return slot_data | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def get_levels_per_gate(self) -> list: | 
					
						
							|  |  |  |         levels_per_gate = list() | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         max_gate_index = self.multiworld.number_of_level_gates[self.player] | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |         average_level_count = 30 / (max_gate_index + 1) | 
					
						
							|  |  |  |         levels_added = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for i in range(max_gate_index + 1): | 
					
						
							|  |  |  |             levels_per_gate.append(average_level_count) | 
					
						
							|  |  |  |             levels_added += average_level_count | 
					
						
							|  |  |  |         additional_count_iterator = 0 | 
					
						
							|  |  |  |         while levels_added < 30: | 
					
						
							|  |  |  |             levels_per_gate[additional_count_iterator] += 1 | 
					
						
							|  |  |  |             levels_added += 1 | 
					
						
							|  |  |  |             additional_count_iterator += 1 if additional_count_iterator < max_gate_index else -max_gate_index | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         if self.multiworld.level_gate_distribution[self.player] == 0 or self.multiworld.level_gate_distribution[self.player] == 2: | 
					
						
							|  |  |  |             early_distribution = self.multiworld.level_gate_distribution[self.player] == 0 | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |             levels_to_distribute = 5 | 
					
						
							|  |  |  |             gate_index_offset = 0 | 
					
						
							|  |  |  |             while levels_to_distribute > 0: | 
					
						
							|  |  |  |                 if levels_per_gate[0 + gate_index_offset] == 1 or \ | 
					
						
							|  |  |  |                         levels_per_gate[max_gate_index - gate_index_offset] == 1: | 
					
						
							|  |  |  |                     break | 
					
						
							|  |  |  |                 if early_distribution: | 
					
						
							|  |  |  |                     levels_per_gate[0 + gate_index_offset] += 1 | 
					
						
							|  |  |  |                     levels_per_gate[max_gate_index - gate_index_offset] -= 1 | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     levels_per_gate[0 + gate_index_offset] -= 1 | 
					
						
							|  |  |  |                     levels_per_gate[max_gate_index - gate_index_offset] += 1 | 
					
						
							|  |  |  |                 gate_index_offset += 1 | 
					
						
							|  |  |  |                 if gate_index_offset > math.floor(max_gate_index / 2): | 
					
						
							|  |  |  |                     gate_index_offset = 0 | 
					
						
							|  |  |  |                 levels_to_distribute -= 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return levels_per_gate | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |     def generate_early(self): | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  |         if self.multiworld.goal[self.player].value == 3: | 
					
						
							|  |  |  |             # Turn off everything else for Grand Prix goal | 
					
						
							|  |  |  |             self.multiworld.number_of_level_gates[self.player].value = 0 | 
					
						
							|  |  |  |             self.multiworld.emblem_percentage_for_cannons_core[self.player].value = 0 | 
					
						
							|  |  |  |             self.multiworld.junk_fill_percentage[self.player].value = 100 | 
					
						
							|  |  |  |             self.multiworld.trap_fill_percentage[self.player].value = 100 | 
					
						
							|  |  |  |             self.multiworld.omochao_trap_weight[self.player].value = 0 | 
					
						
							|  |  |  |             self.multiworld.timestop_trap_weight[self.player].value = 0 | 
					
						
							|  |  |  |             self.multiworld.confusion_trap_weight[self.player].value = 0 | 
					
						
							|  |  |  |             self.multiworld.tiny_trap_weight[self.player].value = 0 | 
					
						
							|  |  |  |             self.multiworld.gravity_trap_weight[self.player].value = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             valid_trap_weights = self.multiworld.exposition_trap_weight[self.player].value + self.multiworld.pong_trap_weight[self.player].value | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if valid_trap_weights == 0: | 
					
						
							|  |  |  |                 self.multiworld.exposition_trap_weight[self.player].value = 4 | 
					
						
							|  |  |  |                 self.multiworld.pong_trap_weight[self.player].value = 4 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if self.multiworld.kart_race_checks[self.player].value == 0: | 
					
						
							|  |  |  |                 self.multiworld.kart_race_checks[self.player].value = 2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             self.gate_bosses = {} | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.gate_bosses = get_gate_bosses(self.multiworld, self.player) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def create_regions(self): | 
					
						
							|  |  |  |         self.mission_map       = get_mission_table(self.multiworld, self.player) | 
					
						
							|  |  |  |         self.mission_count_map = get_mission_count_table(self.multiworld, self.player) | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  |         self.location_table = setup_locations(self.multiworld, self.player, self.mission_map, self.mission_count_map) | 
					
						
							|  |  |  |         create_regions(self.multiworld, self.player, self.location_table) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Not Generate Basic | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |         if self.multiworld.goal[self.player].value == 0 or self.multiworld.goal[self.player].value == 2: | 
					
						
							|  |  |  |             self.multiworld.get_location(LocationName.finalhazard, self.player).place_locked_item(self.create_item(ItemName.maria)) | 
					
						
							|  |  |  |         elif self.multiworld.goal[self.player].value == 1: | 
					
						
							|  |  |  |             self.multiworld.get_location(LocationName.green_hill, self.player).place_locked_item(self.create_item(ItemName.maria)) | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  |         elif self.multiworld.goal[self.player].value == 3: | 
					
						
							|  |  |  |             self.multiworld.get_location(LocationName.grand_prix, self.player).place_locked_item(self.create_item(ItemName.maria)) | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         itempool: typing.List[SA2BItem] = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # First Missions | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |         total_required_locations = len(self.location_table) | 
					
						
							|  |  |  |         total_required_locations -= 1; # Locked Victory Location | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  |         if self.multiworld.goal[self.player].value != 3: | 
					
						
							|  |  |  |             # Fill item pool with all required items | 
					
						
							|  |  |  |             for item in {**upgrades_table}: | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |                 itempool += self._create_items(item) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  |             if self.multiworld.goal[self.player].value == 1 or self.multiworld.goal[self.player].value == 2: | 
					
						
							|  |  |  |                 # Some flavor of Chaos Emerald Hunt | 
					
						
							|  |  |  |                 for item in {**emeralds_table}: | 
					
						
							|  |  |  |                     itempool += self._create_items(item) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Cap at 250 Emblems | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |         raw_emblem_count = total_required_locations - len(itempool) | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  |         total_emblem_count = min(raw_emblem_count, 250) | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |         extra_junk_count = raw_emblem_count - total_emblem_count | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.emblems_for_cannons_core = math.floor( | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |             total_emblem_count * (self.multiworld.emblem_percentage_for_cannons_core[self.player].value / 100.0)) | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |         gate_cost_mult = 1.0 | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         if self.multiworld.level_gate_costs[self.player].value == 0: | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |             gate_cost_mult = 0.6 | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         elif self.multiworld.level_gate_costs[self.player].value == 1: | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |             gate_cost_mult = 0.8 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |         shuffled_region_list = list(range(30)) | 
					
						
							|  |  |  |         emblem_requirement_list = list() | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         self.multiworld.random.shuffle(shuffled_region_list) | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |         levels_per_gate = self.get_levels_per_gate() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         check_for_impossible_shuffle(shuffled_region_list, math.ceil(levels_per_gate[0]), self.multiworld) | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |         levels_added_to_gate = 0 | 
					
						
							|  |  |  |         total_levels_added = 0 | 
					
						
							|  |  |  |         current_gate = 0 | 
					
						
							|  |  |  |         current_gate_emblems = 0 | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |         self.gate_costs = dict() | 
					
						
							|  |  |  |         self.gate_costs[0] = 0 | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |         gates = list() | 
					
						
							|  |  |  |         gates.append(LevelGate(0)) | 
					
						
							|  |  |  |         for i in range(30): | 
					
						
							|  |  |  |             gates[current_gate].gate_levels.append(shuffled_region_list[i]) | 
					
						
							|  |  |  |             emblem_requirement_list.append(current_gate_emblems) | 
					
						
							|  |  |  |             levels_added_to_gate += 1 | 
					
						
							|  |  |  |             total_levels_added += 1 | 
					
						
							|  |  |  |             if levels_added_to_gate >= levels_per_gate[current_gate]: | 
					
						
							|  |  |  |                 current_gate += 1 | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |                 if current_gate > self.multiworld.number_of_level_gates[self.player].value: | 
					
						
							|  |  |  |                     current_gate = self.multiworld.number_of_level_gates[self.player].value | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |                 else: | 
					
						
							|  |  |  |                     current_gate_emblems = max( | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |                         math.floor(total_emblem_count * math.pow(total_levels_added / 30.0, 2.0) * gate_cost_mult), current_gate) | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |                     gates.append(LevelGate(current_gate_emblems)) | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |                     self.gate_costs[current_gate] = current_gate_emblems | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |                 levels_added_to_gate = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.region_emblem_map = dict(zip(shuffled_region_list, emblem_requirement_list)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |         first_cannons_core_mission, final_cannons_core_mission = get_first_and_last_cannons_core_missions(self.mission_map, self.mission_count_map) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         connect_regions(self.multiworld, self.player, gates, self.emblems_for_cannons_core, self.gate_bosses, first_cannons_core_mission, final_cannons_core_mission) | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         max_required_emblems = max(max(emblem_requirement_list), self.emblems_for_cannons_core) | 
					
						
							| 
									
										
										
										
											2022-10-20 10:42:33 +02:00
										 |  |  |         itempool += [self.create_item(ItemName.emblem) for _ in range(max_required_emblems)] | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         non_required_emblems = (total_emblem_count - max_required_emblems) | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         junk_count = math.floor(non_required_emblems * (self.multiworld.junk_fill_percentage[self.player].value / 100.0)) | 
					
						
							| 
									
										
										
										
											2022-10-20 10:42:33 +02:00
										 |  |  |         itempool += [self.create_item(ItemName.emblem, True) for _ in range(non_required_emblems - junk_count)] | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Carve Traps out of junk_count | 
					
						
							|  |  |  |         trap_weights = [] | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         trap_weights += ([ItemName.omochao_trap] * self.multiworld.omochao_trap_weight[self.player].value) | 
					
						
							|  |  |  |         trap_weights += ([ItemName.timestop_trap] * self.multiworld.timestop_trap_weight[self.player].value) | 
					
						
							|  |  |  |         trap_weights += ([ItemName.confuse_trap] * self.multiworld.confusion_trap_weight[self.player].value) | 
					
						
							|  |  |  |         trap_weights += ([ItemName.tiny_trap] * self.multiworld.tiny_trap_weight[self.player].value) | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |         trap_weights += ([ItemName.gravity_trap] * self.multiworld.gravity_trap_weight[self.player].value) | 
					
						
							|  |  |  |         trap_weights += ([ItemName.exposition_trap] * self.multiworld.exposition_trap_weight[self.player].value) | 
					
						
							|  |  |  |         #trap_weights += ([ItemName.darkness_trap] * self.multiworld.darkness_trap_weight[self.player].value) | 
					
						
							| 
									
										
										
										
											2023-03-21 16:26:13 -04:00
										 |  |  |         trap_weights += ([ItemName.pong_trap] * self.multiworld.pong_trap_weight[self.player].value) | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         junk_count += extra_junk_count | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         trap_count = 0 if (len(trap_weights) == 0) else math.ceil(junk_count * (self.multiworld.trap_fill_percentage[self.player].value / 100.0)) | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |         junk_count -= trap_count | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         junk_pool = [] | 
					
						
							|  |  |  |         junk_keys = list(junk_table.keys()) | 
					
						
							|  |  |  |         for i in range(junk_count): | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |             junk_item = self.multiworld.random.choice(junk_keys) | 
					
						
							| 
									
										
										
										
											2022-10-20 10:42:33 +02:00
										 |  |  |             junk_pool.append(self.create_item(junk_item)) | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         itempool += junk_pool | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         trap_pool = [] | 
					
						
							|  |  |  |         for i in range(trap_count): | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |             trap_item = self.multiworld.random.choice(trap_weights) | 
					
						
							| 
									
										
										
										
											2022-10-20 10:42:33 +02:00
										 |  |  |             trap_pool.append(self.create_item(trap_item)) | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         itempool += trap_pool | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         self.multiworld.itempool += itempool | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |         # Music Shuffle | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         if self.multiworld.music_shuffle[self.player] == "levels": | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |             musiclist_o = list(range(0, 47)) | 
					
						
							|  |  |  |             musiclist_s = musiclist_o.copy() | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |             self.multiworld.random.shuffle(musiclist_s) | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |             musiclist_o.extend(range(47, 78)) | 
					
						
							|  |  |  |             musiclist_s.extend(range(47, 78)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if self.multiworld.sadx_music[self.player].value == 1: | 
					
						
							|  |  |  |                 musiclist_s = [x+100 for x in musiclist_s] | 
					
						
							|  |  |  |             elif self.multiworld.sadx_music[self.player].value == 2: | 
					
						
							|  |  |  |                 for i in range(len(musiclist_s)): | 
					
						
							|  |  |  |                     if self.multiworld.random.randint(0,1): | 
					
						
							|  |  |  |                         musiclist_s[i] += 100 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |             self.music_map = dict(zip(musiclist_o, musiclist_s)) | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |         elif self.multiworld.music_shuffle[self.player] == "full": | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |             musiclist_o = list(range(0, 78)) | 
					
						
							|  |  |  |             musiclist_s = musiclist_o.copy() | 
					
						
							| 
									
										
										
										
											2022-10-31 21:41:21 -05:00
										 |  |  |             self.multiworld.random.shuffle(musiclist_s) | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if self.multiworld.sadx_music[self.player].value == 1: | 
					
						
							|  |  |  |                 musiclist_s = [x+100 for x in musiclist_s] | 
					
						
							|  |  |  |             elif self.multiworld.sadx_music[self.player].value == 2: | 
					
						
							|  |  |  |                 for i in range(len(musiclist_s)): | 
					
						
							|  |  |  |                     if self.multiworld.random.randint(0,1): | 
					
						
							|  |  |  |                         musiclist_s[i] += 100 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             self.music_map = dict(zip(musiclist_o, musiclist_s)) | 
					
						
							|  |  |  |         elif self.multiworld.music_shuffle[self.player] == "singularity": | 
					
						
							|  |  |  |             musiclist_o = list(range(0, 78)) | 
					
						
							|  |  |  |             musiclist_s = [self.multiworld.random.choice(musiclist_o)] * len(musiclist_o) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if self.multiworld.sadx_music[self.player].value == 1: | 
					
						
							|  |  |  |                 musiclist_s = [x+100 for x in musiclist_s] | 
					
						
							|  |  |  |             elif self.multiworld.sadx_music[self.player].value == 2: | 
					
						
							|  |  |  |                 if self.multiworld.random.randint(0,1): | 
					
						
							|  |  |  |                     musiclist_s = [x+100 for x in musiclist_s] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |             self.music_map = dict(zip(musiclist_o, musiclist_s)) | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |             musiclist_o = list(range(0, 78)) | 
					
						
							|  |  |  |             musiclist_s = musiclist_o.copy() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if self.multiworld.sadx_music[self.player].value == 1: | 
					
						
							|  |  |  |                 musiclist_s = [x+100 for x in musiclist_s] | 
					
						
							|  |  |  |             elif self.multiworld.sadx_music[self.player].value == 2: | 
					
						
							|  |  |  |                 for i in range(len(musiclist_s)): | 
					
						
							|  |  |  |                     if self.multiworld.random.randint(0,1): | 
					
						
							|  |  |  |                         musiclist_s[i] += 100 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             self.music_map = dict(zip(musiclist_o, musiclist_s)) | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def create_item(self, name: str, force_non_progression=False) -> Item: | 
					
						
							|  |  |  |         data = item_table[name] | 
					
						
							| 
									
										
										
										
											2022-06-17 03:23:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |         if force_non_progression: | 
					
						
							| 
									
										
										
										
											2022-06-17 03:23:27 +02:00
										 |  |  |             classification = ItemClassification.filler | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |         elif name == ItemName.emblem: | 
					
						
							|  |  |  |             classification = ItemClassification.progression_skip_balancing | 
					
						
							| 
									
										
										
										
											2022-06-17 03:23:27 +02:00
										 |  |  |         elif data.progression: | 
					
						
							|  |  |  |             classification = ItemClassification.progression | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  |         elif data.trap: | 
					
						
							|  |  |  |             classification = ItemClassification.trap | 
					
						
							| 
									
										
										
										
											2022-06-17 03:23:27 +02:00
										 |  |  |         else: | 
					
						
							|  |  |  |             classification = ItemClassification.filler | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         created_item = SA2BItem(name, classification, data.code, self.player) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |         return created_item | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |     def get_filler_item_name(self) -> str: | 
					
						
							|  |  |  |         self.multiworld.random.choice(junk_table.keys()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |     def set_rules(self): | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |         set_rules(self.multiworld, self.player, self.gate_bosses, self.mission_map, self.mission_count_map) | 
					
						
							| 
									
										
										
										
											2022-06-20 15:12:13 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def write_spoiler(self, spoiler_handle: typing.TextIO): | 
					
						
							| 
									
										
										
										
											2022-12-07 00:20:02 -05:00
										 |  |  |         if self.multiworld.number_of_level_gates[self.player].value > 0: | 
					
						
							|  |  |  |             spoiler_handle.write("\n") | 
					
						
							|  |  |  |             header_text = "Sonic Adventure 2 Bosses for {}:\n" | 
					
						
							|  |  |  |             header_text = header_text.format(self.multiworld.player_name[self.player]) | 
					
						
							|  |  |  |             spoiler_handle.write(header_text) | 
					
						
							|  |  |  |             for x in range(len(self.gate_bosses.values())): | 
					
						
							|  |  |  |                 text = "Gate {0} Boss: {1}\n" | 
					
						
							|  |  |  |                 text = text.format((x + 1), get_boss_name(self.gate_bosses[x + 1])) | 
					
						
							|  |  |  |                 spoiler_handle.writelines(text) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def extend_hint_information(self, hint_data: typing.Dict[int, typing.Dict[int, str]]): | 
					
						
							|  |  |  |         gate_names = [ | 
					
						
							|  |  |  |             LocationName.gate_0_region, | 
					
						
							|  |  |  |             LocationName.gate_1_region, | 
					
						
							|  |  |  |             LocationName.gate_2_region, | 
					
						
							|  |  |  |             LocationName.gate_3_region, | 
					
						
							|  |  |  |             LocationName.gate_4_region, | 
					
						
							|  |  |  |             LocationName.gate_5_region, | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  |         no_hint_region_names = [ | 
					
						
							|  |  |  |             LocationName.cannon_core_region, | 
					
						
							|  |  |  |             LocationName.chao_garden_beginner_region, | 
					
						
							|  |  |  |             LocationName.chao_garden_intermediate_region, | 
					
						
							|  |  |  |             LocationName.chao_garden_expert_region, | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  |         er_hint_data = {} | 
					
						
							|  |  |  |         for i in range(self.multiworld.number_of_level_gates[self.player].value + 1): | 
					
						
							|  |  |  |             gate_name = gate_names[i] | 
					
						
							|  |  |  |             gate_region = self.multiworld.get_region(gate_name, self.player) | 
					
						
							|  |  |  |             if not gate_region: | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             for exit in gate_region.exits: | 
					
						
							|  |  |  |                 if exit.connected_region.name in gate_names or exit.connected_region.name in no_hint_region_names: | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 level_region = exit.connected_region | 
					
						
							|  |  |  |                 for location in level_region.locations: | 
					
						
							|  |  |  |                     er_hint_data[location.address] = gate_name | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         hint_data[self.player] = er_hint_data | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     @classmethod | 
					
						
							| 
									
										
										
										
											2022-09-16 20:06:25 -04:00
										 |  |  |     def stage_fill_hook(cls, world, progitempool, usefulitempool, filleritempool, fill_locations): | 
					
						
							| 
									
										
										
										
											2022-05-14 06:00:49 -04:00
										 |  |  |         if world.get_game_players("Sonic Adventure 2 Battle"): | 
					
						
							|  |  |  |             progitempool.sort( | 
					
						
							|  |  |  |                 key=lambda item: 0 if (item.name != 'Emblem') else 1) |