├── .gitignore ├── Dockerfile ├── LICENSE.md ├── PEP8_PyUnit_pre-commit_hook ├── Pipfile ├── Pipfile.lock ├── README.md ├── __init__.py ├── example.py ├── gurpsspace ├── __init__.py ├── asteroidbelt.py ├── dice.py ├── gasgiant.py ├── orbitcontents.py ├── output │ ├── __init__.py │ └── latexout.py ├── planet.py ├── planetsystem.py ├── satellites.py ├── star.py ├── starsystem.py ├── tables.py └── world.py ├── namegenerator ├── __init__.py ├── corpuses │ ├── celtic.csv │ ├── egyptian.csv │ ├── greek.csv │ ├── maya.csv │ ├── roman.csv │ ├── scotland_female.csv │ ├── scotland_male.csv │ └── technicus.csv ├── markovchain.py ├── markovstate.py ├── markovstatefactory.py └── namegenerator.py ├── server.py ├── setup.cfg ├── tests ├── __init__.py ├── diceroller_tests.py ├── markovchain_tests.py ├── namegenerator_tests.py ├── planetsystem_tests.py ├── star_tests.py ├── starsystem_tests.py └── test_corpus_one_name.csv └── webgui ├── __init__.py ├── scripts ├── overview.js └── planets.js ├── setup.cfg ├── static ├── favicon.ico ├── fonts │ └── Noto-Sans-regular │ │ ├── LICENSE.txt │ │ ├── Noto-Sans-regular.eot │ │ ├── Noto-Sans-regular.svg │ │ ├── Noto-Sans-regular.ttf │ │ ├── Noto-Sans-regular.woff │ │ └── Noto-Sans-regular.woff2 ├── mainstyle.css └── planetsystem.css └── templates ├── index.html ├── moons.html ├── overview.html ├── planetsystem.html └── printable.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PEP8_PyUnit_pre-commit_hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/PEP8_PyUnit_pre-commit_hook -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/__init__.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/example.py -------------------------------------------------------------------------------- /gurpsspace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/__init__.py -------------------------------------------------------------------------------- /gurpsspace/asteroidbelt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/asteroidbelt.py -------------------------------------------------------------------------------- /gurpsspace/dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/dice.py -------------------------------------------------------------------------------- /gurpsspace/gasgiant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/gasgiant.py -------------------------------------------------------------------------------- /gurpsspace/orbitcontents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/orbitcontents.py -------------------------------------------------------------------------------- /gurpsspace/output/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | 'latexout' 3 | ] 4 | -------------------------------------------------------------------------------- /gurpsspace/output/latexout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/output/latexout.py -------------------------------------------------------------------------------- /gurpsspace/planet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/planet.py -------------------------------------------------------------------------------- /gurpsspace/planetsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/planetsystem.py -------------------------------------------------------------------------------- /gurpsspace/satellites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/satellites.py -------------------------------------------------------------------------------- /gurpsspace/star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/star.py -------------------------------------------------------------------------------- /gurpsspace/starsystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/starsystem.py -------------------------------------------------------------------------------- /gurpsspace/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/tables.py -------------------------------------------------------------------------------- /gurpsspace/world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/gurpsspace/world.py -------------------------------------------------------------------------------- /namegenerator/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | 'namegenerator' 3 | ] 4 | -------------------------------------------------------------------------------- /namegenerator/corpuses/celtic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/corpuses/celtic.csv -------------------------------------------------------------------------------- /namegenerator/corpuses/egyptian.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/corpuses/egyptian.csv -------------------------------------------------------------------------------- /namegenerator/corpuses/greek.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/corpuses/greek.csv -------------------------------------------------------------------------------- /namegenerator/corpuses/maya.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/corpuses/maya.csv -------------------------------------------------------------------------------- /namegenerator/corpuses/roman.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/corpuses/roman.csv -------------------------------------------------------------------------------- /namegenerator/corpuses/scotland_female.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/corpuses/scotland_female.csv -------------------------------------------------------------------------------- /namegenerator/corpuses/scotland_male.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/corpuses/scotland_male.csv -------------------------------------------------------------------------------- /namegenerator/corpuses/technicus.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/corpuses/technicus.csv -------------------------------------------------------------------------------- /namegenerator/markovchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/markovchain.py -------------------------------------------------------------------------------- /namegenerator/markovstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/markovstate.py -------------------------------------------------------------------------------- /namegenerator/markovstatefactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/markovstatefactory.py -------------------------------------------------------------------------------- /namegenerator/namegenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/namegenerator/namegenerator.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/server.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/diceroller_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/tests/diceroller_tests.py -------------------------------------------------------------------------------- /tests/markovchain_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/tests/markovchain_tests.py -------------------------------------------------------------------------------- /tests/namegenerator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/tests/namegenerator_tests.py -------------------------------------------------------------------------------- /tests/planetsystem_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/tests/planetsystem_tests.py -------------------------------------------------------------------------------- /tests/star_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/tests/star_tests.py -------------------------------------------------------------------------------- /tests/starsystem_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/tests/starsystem_tests.py -------------------------------------------------------------------------------- /tests/test_corpus_one_name.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/tests/test_corpus_one_name.csv -------------------------------------------------------------------------------- /webgui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webgui/scripts/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/scripts/overview.js -------------------------------------------------------------------------------- /webgui/scripts/planets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/scripts/planets.js -------------------------------------------------------------------------------- /webgui/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/setup.cfg -------------------------------------------------------------------------------- /webgui/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/static/favicon.ico -------------------------------------------------------------------------------- /webgui/static/fonts/Noto-Sans-regular/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/static/fonts/Noto-Sans-regular/LICENSE.txt -------------------------------------------------------------------------------- /webgui/static/fonts/Noto-Sans-regular/Noto-Sans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/static/fonts/Noto-Sans-regular/Noto-Sans-regular.eot -------------------------------------------------------------------------------- /webgui/static/fonts/Noto-Sans-regular/Noto-Sans-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/static/fonts/Noto-Sans-regular/Noto-Sans-regular.svg -------------------------------------------------------------------------------- /webgui/static/fonts/Noto-Sans-regular/Noto-Sans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/static/fonts/Noto-Sans-regular/Noto-Sans-regular.ttf -------------------------------------------------------------------------------- /webgui/static/fonts/Noto-Sans-regular/Noto-Sans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/static/fonts/Noto-Sans-regular/Noto-Sans-regular.woff -------------------------------------------------------------------------------- /webgui/static/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/static/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2 -------------------------------------------------------------------------------- /webgui/static/mainstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/static/mainstyle.css -------------------------------------------------------------------------------- /webgui/static/planetsystem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/static/planetsystem.css -------------------------------------------------------------------------------- /webgui/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/templates/index.html -------------------------------------------------------------------------------- /webgui/templates/moons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/templates/moons.html -------------------------------------------------------------------------------- /webgui/templates/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/templates/overview.html -------------------------------------------------------------------------------- /webgui/templates/planetsystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/templates/planetsystem.html -------------------------------------------------------------------------------- /webgui/templates/printable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoppi/starsystem-gen/HEAD/webgui/templates/printable.html --------------------------------------------------------------------------------