Add a cellular-automata-based cave level generator, plus an optparse-applicative-based CLI for invoking level generators in general.
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			615 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			615 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
| import Test.Prelude
 | |
| import qualified Xanthous.Data.EntityMapSpec
 | |
| import qualified Xanthous.DataSpec
 | |
| import qualified Xanthous.Entities.RawsSpec
 | |
| import qualified Xanthous.GameSpec
 | |
| import qualified Xanthous.Generators.UtilSpec
 | |
| import qualified Xanthous.MessageSpec
 | |
| import qualified Xanthous.OrphansSpec
 | |
| 
 | |
| main :: IO ()
 | |
| main = defaultMain test
 | |
| 
 | |
| test :: TestTree
 | |
| test = testGroup "Xanthous"
 | |
|   [ Xanthous.Data.EntityMapSpec.test
 | |
|   , Xanthous.Entities.RawsSpec.test
 | |
|   , Xanthous.GameSpec.test
 | |
|   , Xanthous.Generators.UtilSpec.test
 | |
|   , Xanthous.MessageSpec.test
 | |
|   , Xanthous.OrphansSpec.test
 | |
|   , Xanthous.DataSpec.test
 | |
|   ]
 |