 5e1aa52373
			
		
	
	5e1aa52373
	
	
	
		
			
			* Minecraft: rewrite to modern AP standards * Fix gitignore to not try to ignore the entire minecraft world * minecraft: clean up MC-specific tests * minecraft: use pkgutil instead of open * minecraft: ship as apworld * mc: update region to new api * Increase upper limit on advancement and egg shard goals * mc: reduce egg shard count by 5 for structure compasses * Minecraft: add more tests Ensures data loading works; tests beatability with various options at their max setting; new tests for 1.19 advancements * test improvements * mc: typing and imports cleanup * parens * mc: condense filler item code and override get_filler_item_name
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from test.TestBase import TestBase, WorldTestBase
 | |
| from .. import MinecraftWorld
 | |
| 
 | |
| 
 | |
| class MCTestBase(WorldTestBase, TestBase):
 | |
|     game = "Minecraft"
 | |
|     player: int = 1
 | |
| 
 | |
|     def _create_items(self, items, player):
 | |
|         singleton = False
 | |
|         if isinstance(items, str):
 | |
|             items = [items]
 | |
|             singleton = True
 | |
|         ret = [self.multiworld.worlds[player].create_item(item) for item in items]
 | |
|         if singleton:
 | |
|             return ret[0]
 | |
|         return ret
 | |
| 
 | |
|     def _get_items(self, item_pool, all_except):
 | |
|         if all_except and len(all_except) > 0:
 | |
|             items = self.multiworld.itempool[:]
 | |
|             items = [item for item in items if item.name not in all_except]
 | |
|             items.extend(self._create_items(item_pool[0], 1))
 | |
|         else:
 | |
|             items = self._create_items(item_pool[0], 1)
 | |
|         return self.get_state(items)
 | |
| 
 | |
|     def _get_items_partial(self, item_pool, missing_item):
 | |
|         new_items = item_pool[0].copy()
 | |
|         new_items.remove(missing_item)
 | |
|         items = self._create_items(new_items, 1)
 | |
|         return self.get_state(items)
 | |
|             
 |