 52e65e208e
			
		
	
	52e65e208e
	
	
	
		
			
			Major Content update for Stardew Valley, including the following features - Major performance improvements all across the Stardew Valley apworld, including a significant reduction in the test time - Randomized Farm Type - Bundles rework (Remixed Bundles and Missing Bundle!) - New Settings: * Shipsanity - Shipping individual items * Monstersanity - Slaying monsters * Cooksanity - Cooking individual recipes * Chefsanity - Learning individual recipes * Craftsanity - Crafting individual items - New Goals: * Protector of the Valley - Complete every monster slayer goal * Full Shipment - Ship every item * Craftmaster - Craft every item * Gourmet Chef - Cook every recipe * Legend - Earn 10 000 000g * Mystery of the Stardrops - Find every stardrop (Maguffin Hunt) * Allsanity - Complete every check in your slot - Building Shuffle: Cheaper options - Tool Shuffle: Cheaper options - Money rework - New traps - New isolated checks and items, including the farm cave, the movie theater, etc - Mod Support: SVE [Albrekka] - Mod Support: Distant Lands [Albrekka] - Mod Support: Hat Mouse Lacey [Albrekka] - Mod Support: Boarding House [Albrekka] Co-authored-by: Witchybun <elnendil@gmail.com> Co-authored-by: Witchybun <96719127+Witchybun@users.noreply.github.com> Co-authored-by: Jouramie <jouramie@hotmail.com> Co-authored-by: Alchav <59858495+Alchav@users.noreply.github.com>
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from itertools import combinations
 | |
| 
 | |
| from .option_names import all_option_choices
 | |
| from .. import setup_solo_multiworld, SVTestCase
 | |
| from ..assertion.world_assert import WorldAssertMixin
 | |
| from ... import options
 | |
| 
 | |
| 
 | |
| class TestGenerateDynamicOptions(WorldAssertMixin, SVTestCase):
 | |
|     def test_given_option_pair_when_generate_then_basic_checks(self):
 | |
|         if self.skip_long_tests:
 | |
|             return
 | |
| 
 | |
|         for (option1, option1_choice), (option2, option2_choice) in combinations(all_option_choices, 2):
 | |
|             if option1 is option2:
 | |
|                 continue
 | |
| 
 | |
|             world_options = {
 | |
|                 option1: option1_choice,
 | |
|                 option2: option2_choice
 | |
|             }
 | |
| 
 | |
|             with self.solo_world_sub_test(f"{option1.internal_name}: {option1_choice}, {option2.internal_name}: {option2_choice}",
 | |
|                                           world_options,
 | |
|                                           world_caching=False) \
 | |
|                     as (multiworld, _):
 | |
|                 self.assert_basic_checks(multiworld)
 | |
| 
 | |
| 
 | |
| class TestDynamicOptionDebug(WorldAssertMixin, SVTestCase):
 | |
| 
 | |
|     def test_option_pair_debug(self):
 | |
|         option_dict = {
 | |
|             options.SpecialOrderLocations.internal_name: options.SpecialOrderLocations.option_board_qi,
 | |
|             options.Monstersanity.internal_name: options.Monstersanity.option_one_per_monster,
 | |
|         }
 | |
|         for i in range(1):
 | |
|             # seed = int(random() * pow(10, 18) - 1)
 | |
|             seed = 823942126251776128
 | |
|             with self.subTest(f"Seed: {seed}"):
 | |
|                 print(f"Seed: {seed}")
 | |
|                 multiworld = setup_solo_multiworld(option_dict, seed)
 | |
|                 self.assert_basic_checks(multiworld)
 |