├── .gitignore ├── MANIFEST.in ├── SConstruct ├── native └── random.c ├── noobhack ├── __init__.py ├── game │ ├── __init__.py │ ├── dungeon.py │ ├── events.py │ ├── graphics.py │ ├── intrinsics.py │ ├── manager.py │ ├── mapping.py │ ├── player.py │ ├── plugins │ │ └── hp_color │ │ │ └── __init__.py │ ├── save.py │ ├── shops.py │ ├── sounds.py │ └── status.py ├── plugins.py ├── process.py ├── proxy.py ├── telnet.py └── ui │ ├── __init__.py │ ├── common.py │ ├── game.py │ ├── helper.py │ └── minimap.py ├── readme.md ├── requirements.txt ├── scripts └── noobhack ├── setup.py ├── tests ├── __init__.py ├── game │ ├── test_branch.py │ ├── test_buy_id.py │ ├── test_dungeon.py │ ├── test_level.py │ ├── test_manager.py │ ├── test_mapping.py │ ├── test_player.py │ └── test_sell_id.py ├── plugins │ └── test_hp_color.py ├── ui │ ├── test_curses_interface.py │ ├── test_drawing_individual_branches.py │ ├── test_drawing_individual_levels.py │ └── test_drawing_multiple_branches.py └── utils.py └── todo.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.md 2 | -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/SConstruct -------------------------------------------------------------------------------- /native/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/native/random.c -------------------------------------------------------------------------------- /noobhack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /noobhack/game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /noobhack/game/dungeon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/dungeon.py -------------------------------------------------------------------------------- /noobhack/game/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/events.py -------------------------------------------------------------------------------- /noobhack/game/graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/graphics.py -------------------------------------------------------------------------------- /noobhack/game/intrinsics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/intrinsics.py -------------------------------------------------------------------------------- /noobhack/game/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/manager.py -------------------------------------------------------------------------------- /noobhack/game/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/mapping.py -------------------------------------------------------------------------------- /noobhack/game/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/player.py -------------------------------------------------------------------------------- /noobhack/game/plugins/hp_color/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/plugins/hp_color/__init__.py -------------------------------------------------------------------------------- /noobhack/game/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/save.py -------------------------------------------------------------------------------- /noobhack/game/shops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/shops.py -------------------------------------------------------------------------------- /noobhack/game/sounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/sounds.py -------------------------------------------------------------------------------- /noobhack/game/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/game/status.py -------------------------------------------------------------------------------- /noobhack/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/plugins.py -------------------------------------------------------------------------------- /noobhack/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/process.py -------------------------------------------------------------------------------- /noobhack/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/proxy.py -------------------------------------------------------------------------------- /noobhack/telnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/telnet.py -------------------------------------------------------------------------------- /noobhack/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /noobhack/ui/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/ui/common.py -------------------------------------------------------------------------------- /noobhack/ui/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/ui/game.py -------------------------------------------------------------------------------- /noobhack/ui/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/ui/helper.py -------------------------------------------------------------------------------- /noobhack/ui/minimap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/noobhack/ui/minimap.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/noobhack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/scripts/noobhack -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/game/test_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/game/test_branch.py -------------------------------------------------------------------------------- /tests/game/test_buy_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/game/test_buy_id.py -------------------------------------------------------------------------------- /tests/game/test_dungeon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/game/test_dungeon.py -------------------------------------------------------------------------------- /tests/game/test_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/game/test_level.py -------------------------------------------------------------------------------- /tests/game/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/game/test_manager.py -------------------------------------------------------------------------------- /tests/game/test_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/game/test_mapping.py -------------------------------------------------------------------------------- /tests/game/test_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/game/test_player.py -------------------------------------------------------------------------------- /tests/game/test_sell_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/game/test_sell_id.py -------------------------------------------------------------------------------- /tests/plugins/test_hp_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/plugins/test_hp_color.py -------------------------------------------------------------------------------- /tests/ui/test_curses_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/ui/test_curses_interface.py -------------------------------------------------------------------------------- /tests/ui/test_drawing_individual_branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/ui/test_drawing_individual_branches.py -------------------------------------------------------------------------------- /tests/ui/test_drawing_individual_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/ui/test_drawing_individual_levels.py -------------------------------------------------------------------------------- /tests/ui/test_drawing_multiple_branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/ui/test_drawing_multiple_branches.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/tests/utils.py -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samfoo/noobhack/HEAD/todo.md --------------------------------------------------------------------------------