├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── .isort.cfg ├── CHANGELOG.rst ├── LICENSE.md ├── README.rst ├── docs ├── Makefile ├── _static │ └── custom.css ├── api │ ├── achievementencentry.rst │ ├── book.rst │ ├── encentry.rst │ ├── encentrytemplate.rst │ ├── encyclopaedia.rst │ └── text_block.rst ├── conf.py ├── development │ ├── changelog.rst │ ├── docsgame.rst │ └── tools.rst ├── index.rst ├── make.bat ├── renpy_doc.py └── user_guide │ ├── 01-getting-started │ ├── 01-install.rst │ ├── 02-enc.rst │ └── 03-accessing.rst │ ├── 02-scope │ ├── 01-global-vs-local.rst │ └── 02-persistent.rst │ ├── 03-interface │ ├── 01-default-screens.rst │ └── 02-custom-screens.rst │ ├── 04-encyclopaedia-features │ ├── 13-callbacks.rst │ ├── 14-templates.rst │ ├── 15-translations.rst │ ├── 16-hyperlinks.rst │ ├── 18-sorting.rst │ └── 20-actions.rst │ ├── 05-encentry-features │ ├── 01-writing-text.rst │ ├── 02-placeholders.rst │ ├── 04-locking-and-unlocking.rst │ ├── 05-manual-numbering.rst │ ├── 06-sub-pages.rst │ └── 07-ach-entry.rst │ └── 06-book-features │ ├── 01-numbering.rst │ ├── 02-subject.rst │ ├── 03-word-count.rst │ ├── 04-percentage-unlocked.rst │ ├── 05-locking.rst │ ├── 06-viewed.rst │ └── 07-migration.rst ├── docsgame_source └── game │ ├── 0_main_menu_sidebar.rpy │ ├── docs_screens.rpy │ ├── fonts │ └── cardigan_titling │ │ ├── Typodermic Desktop EULA 2023.pdf │ │ ├── cardigan titling bd.otf │ │ ├── cardigan titling rg.otf │ │ └── read-this.html │ ├── gui.rpy │ ├── gui │ ├── bar │ │ ├── bottom.png │ │ ├── left.png │ │ ├── right.png │ │ └── top.png │ ├── button │ │ ├── check_foreground.png │ │ ├── check_selected_foreground.png │ │ ├── choice_hover_background.png │ │ ├── choice_idle_background.png │ │ ├── hover_background.png │ │ ├── idle_background.png │ │ ├── quick_hover_background.png │ │ ├── quick_idle_background.png │ │ ├── radio_foreground.png │ │ ├── radio_selected_foreground.png │ │ ├── slot_hover_background.png │ │ └── slot_idle_background.png │ ├── frame.png │ ├── game_menu.png │ ├── main_menu.png │ ├── namebox.png │ ├── notify.png │ ├── nvl.png │ ├── overlay │ │ ├── confirm.png │ │ ├── game_menu.png │ │ └── main_menu.png │ ├── phone │ │ ├── bar │ │ │ ├── bottom.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ └── top.png │ │ ├── button │ │ │ ├── check_foreground.png │ │ │ ├── check_selected_foreground.png │ │ │ ├── choice_hover_background.png │ │ │ ├── choice_idle_background.png │ │ │ ├── hover_background.png │ │ │ ├── idle_background.png │ │ │ ├── radio_foreground.png │ │ │ ├── radio_selected_foreground.png │ │ │ ├── slot_hover_background.png │ │ │ └── slot_idle_background.png │ │ ├── nvl.png │ │ ├── overlay │ │ │ ├── game_menu.png │ │ │ └── main_menu.png │ │ ├── scrollbar │ │ │ ├── horizontal_hover_bar.png │ │ │ ├── horizontal_hover_thumb.png │ │ │ ├── horizontal_idle_bar.png │ │ │ ├── horizontal_idle_thumb.png │ │ │ ├── vertical_hover_bar.png │ │ │ ├── vertical_hover_thumb.png │ │ │ ├── vertical_idle_bar.png │ │ │ └── vertical_idle_thumb.png │ │ ├── slider │ │ │ ├── horizontal_hover_bar.png │ │ │ ├── horizontal_hover_thumb.png │ │ │ ├── horizontal_idle_bar.png │ │ │ ├── horizontal_idle_thumb.png │ │ │ ├── vertical_hover_bar.png │ │ │ ├── vertical_hover_thumb.png │ │ │ ├── vertical_idle_bar.png │ │ │ └── vertical_idle_thumb.png │ │ └── textbox.png │ ├── scrollbar │ │ ├── horizontal_hover_bar.png │ │ ├── horizontal_hover_thumb.png │ │ ├── horizontal_idle_bar.png │ │ ├── horizontal_idle_thumb.png │ │ ├── vertical_hover_bar.png │ │ ├── vertical_hover_thumb.png │ │ ├── vertical_idle_bar.png │ │ └── vertical_idle_thumb.png │ ├── skip.png │ ├── slider │ │ ├── horizontal_hover_bar.png │ │ ├── horizontal_hover_thumb.png │ │ ├── horizontal_idle_bar.png │ │ ├── horizontal_idle_thumb.png │ │ ├── vertical_hover_bar.png │ │ ├── vertical_hover_thumb.png │ │ ├── vertical_idle_bar.png │ │ └── vertical_idle_thumb.png │ ├── textbox.png │ └── window_icon.png │ ├── html_parser │ ├── build_entries.rpy │ ├── formatter_ren.py │ ├── parser_ren.py │ ├── styles.rpy │ └── utils_ren.py │ ├── images │ ├── ach_icon.png │ ├── enc_icon.png │ ├── garden.png │ ├── library.png │ └── morphing-diamonds.svg │ ├── library_enc.rpy │ ├── options.rpy │ ├── screens │ ├── main_menu.rpy │ ├── navigation.rpy │ └── screens.rpy │ └── script.rpy ├── encyclopaedia ├── __init__.py ├── achentry_ren.py ├── actions_ren.py ├── book │ ├── __init__.py │ ├── actions_ren.py │ └── book_ren.py ├── config.rpy ├── constants_ren.py ├── encentry_ren.py ├── encentry_template_ren.py ├── encyclopaedia_ren.py ├── entry_sorting_ren.py ├── eventemitter_ren.py ├── exceptions_ren.py ├── hyperlink_ren.py ├── labels.rpy ├── screens.rpy ├── text_block_ren.py ├── types_ren.py ├── utils_ren.py └── version.py ├── mock_renpy ├── README.rst ├── __init__.py ├── renpy │ ├── __init__.py │ ├── color.py │ ├── display │ │ ├── im.py │ │ └── transform.py │ ├── exports.py │ ├── game.py │ ├── python.py │ ├── store.py │ └── ui.py └── setup.py ├── pyproject.toml ├── pyrightconfig.json ├── readthedocs.yml ├── renpy_pygments ├── .gitignore ├── pyproject.toml ├── renpy_pygments │ ├── __init__.py │ ├── keywords.py │ └── lexer.py ├── requirements_lint.txt ├── ruff.toml └── tox.ini ├── requirements ├── docs.txt ├── docsgame.txt ├── lint.txt └── tests.txt ├── ruff.toml ├── scripts └── batch_rst2html5.sh ├── tests ├── __init__.py ├── actions │ ├── test_FilterBySubject.py │ ├── test_SetEntry.py │ ├── test_SortEncyclopaeda.py │ ├── test_actions.py │ ├── test_close_active_entry.py │ ├── test_next_entry.py │ ├── test_next_page.py │ ├── test_previous_entry.py │ └── test_previous_page.py ├── book │ ├── actions │ │ ├── test_book_actions_next_page.py │ │ └── test_book_actions_previous_page.py │ ├── test_book_add.py │ ├── test_book_change_page.py │ ├── test_book_empty.py │ ├── test_book_percentage_unlocked.py │ ├── test_book_persistent.py │ ├── test_book_set_active_page.py │ ├── test_book_str.py │ ├── test_book_title.py │ ├── test_book_viewed.py │ └── test_locked.py ├── conftest.py ├── encentry │ ├── test_achievement_enc_entry.py │ ├── test_encentry.py │ ├── test_encentry_locked.py │ ├── test_locked_persistent.py │ ├── test_str.py │ ├── test_viewed.py │ └── test_viewed_persistent.py ├── encyclopaedia │ ├── test_change_entry.py │ ├── test_enc_sorting_mode.py │ ├── test_encyclopaedia.py │ └── test_set_entry.py ├── test_enc_entry_template.py ├── test_hyperlink.py └── test_text_block.py └── tox.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: jsfehler 2 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | multi_line_output=3 3 | -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/api/achievementencentry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/api/achievementencentry.rst -------------------------------------------------------------------------------- /docs/api/book.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/api/book.rst -------------------------------------------------------------------------------- /docs/api/encentry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/api/encentry.rst -------------------------------------------------------------------------------- /docs/api/encentrytemplate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/api/encentrytemplate.rst -------------------------------------------------------------------------------- /docs/api/encyclopaedia.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/api/encyclopaedia.rst -------------------------------------------------------------------------------- /docs/api/text_block.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/api/text_block.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/development/docsgame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/development/docsgame.rst -------------------------------------------------------------------------------- /docs/development/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/development/tools.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/renpy_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/renpy_doc.py -------------------------------------------------------------------------------- /docs/user_guide/01-getting-started/01-install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/01-getting-started/01-install.rst -------------------------------------------------------------------------------- /docs/user_guide/01-getting-started/02-enc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/01-getting-started/02-enc.rst -------------------------------------------------------------------------------- /docs/user_guide/01-getting-started/03-accessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/01-getting-started/03-accessing.rst -------------------------------------------------------------------------------- /docs/user_guide/02-scope/01-global-vs-local.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/02-scope/01-global-vs-local.rst -------------------------------------------------------------------------------- /docs/user_guide/02-scope/02-persistent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/02-scope/02-persistent.rst -------------------------------------------------------------------------------- /docs/user_guide/03-interface/01-default-screens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/03-interface/01-default-screens.rst -------------------------------------------------------------------------------- /docs/user_guide/03-interface/02-custom-screens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/03-interface/02-custom-screens.rst -------------------------------------------------------------------------------- /docs/user_guide/04-encyclopaedia-features/13-callbacks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/04-encyclopaedia-features/13-callbacks.rst -------------------------------------------------------------------------------- /docs/user_guide/04-encyclopaedia-features/14-templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/04-encyclopaedia-features/14-templates.rst -------------------------------------------------------------------------------- /docs/user_guide/04-encyclopaedia-features/15-translations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/04-encyclopaedia-features/15-translations.rst -------------------------------------------------------------------------------- /docs/user_guide/04-encyclopaedia-features/16-hyperlinks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/04-encyclopaedia-features/16-hyperlinks.rst -------------------------------------------------------------------------------- /docs/user_guide/04-encyclopaedia-features/18-sorting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/04-encyclopaedia-features/18-sorting.rst -------------------------------------------------------------------------------- /docs/user_guide/04-encyclopaedia-features/20-actions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/04-encyclopaedia-features/20-actions.rst -------------------------------------------------------------------------------- /docs/user_guide/05-encentry-features/01-writing-text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/05-encentry-features/01-writing-text.rst -------------------------------------------------------------------------------- /docs/user_guide/05-encentry-features/02-placeholders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/05-encentry-features/02-placeholders.rst -------------------------------------------------------------------------------- /docs/user_guide/05-encentry-features/04-locking-and-unlocking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/05-encentry-features/04-locking-and-unlocking.rst -------------------------------------------------------------------------------- /docs/user_guide/05-encentry-features/05-manual-numbering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/05-encentry-features/05-manual-numbering.rst -------------------------------------------------------------------------------- /docs/user_guide/05-encentry-features/06-sub-pages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/05-encentry-features/06-sub-pages.rst -------------------------------------------------------------------------------- /docs/user_guide/05-encentry-features/07-ach-entry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/05-encentry-features/07-ach-entry.rst -------------------------------------------------------------------------------- /docs/user_guide/06-book-features/01-numbering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/06-book-features/01-numbering.rst -------------------------------------------------------------------------------- /docs/user_guide/06-book-features/02-subject.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/06-book-features/02-subject.rst -------------------------------------------------------------------------------- /docs/user_guide/06-book-features/03-word-count.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/06-book-features/03-word-count.rst -------------------------------------------------------------------------------- /docs/user_guide/06-book-features/04-percentage-unlocked.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/06-book-features/04-percentage-unlocked.rst -------------------------------------------------------------------------------- /docs/user_guide/06-book-features/05-locking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/06-book-features/05-locking.rst -------------------------------------------------------------------------------- /docs/user_guide/06-book-features/06-viewed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/06-book-features/06-viewed.rst -------------------------------------------------------------------------------- /docs/user_guide/06-book-features/07-migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docs/user_guide/06-book-features/07-migration.rst -------------------------------------------------------------------------------- /docsgame_source/game/0_main_menu_sidebar.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/0_main_menu_sidebar.rpy -------------------------------------------------------------------------------- /docsgame_source/game/docs_screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/docs_screens.rpy -------------------------------------------------------------------------------- /docsgame_source/game/fonts/cardigan_titling/Typodermic Desktop EULA 2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/fonts/cardigan_titling/Typodermic Desktop EULA 2023.pdf -------------------------------------------------------------------------------- /docsgame_source/game/fonts/cardigan_titling/cardigan titling bd.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/fonts/cardigan_titling/cardigan titling bd.otf -------------------------------------------------------------------------------- /docsgame_source/game/fonts/cardigan_titling/cardigan titling rg.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/fonts/cardigan_titling/cardigan titling rg.otf -------------------------------------------------------------------------------- /docsgame_source/game/fonts/cardigan_titling/read-this.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/fonts/cardigan_titling/read-this.html -------------------------------------------------------------------------------- /docsgame_source/game/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui.rpy -------------------------------------------------------------------------------- /docsgame_source/game/gui/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/bar/bottom.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/bar/left.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/bar/right.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/bar/top.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/check_foreground.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/check_selected_foreground.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/choice_hover_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/choice_idle_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/hover_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/idle_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/quick_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/quick_hover_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/quick_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/quick_idle_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/radio_foreground.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/slot_hover_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/button/slot_idle_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/frame.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/game_menu.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/main_menu.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/namebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/namebox.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/notify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/notify.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/nvl.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/overlay/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/overlay/confirm.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/overlay/game_menu.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/overlay/main_menu.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/bar/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/bar/bottom.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/bar/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/bar/left.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/bar/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/bar/right.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/bar/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/bar/top.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/button/check_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/button/check_foreground.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/button/check_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/button/check_selected_foreground.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/button/choice_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/button/choice_hover_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/button/choice_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/button/choice_idle_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/button/hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/button/hover_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/button/idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/button/idle_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/button/radio_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/button/radio_foreground.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/button/radio_selected_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/button/radio_selected_foreground.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/button/slot_hover_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/button/slot_hover_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/button/slot_idle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/button/slot_idle_background.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/nvl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/nvl.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/overlay/game_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/overlay/game_menu.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/overlay/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/overlay/main_menu.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/phone/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/phone/textbox.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/scrollbar/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/scrollbar/horizontal_hover_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/scrollbar/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/scrollbar/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/scrollbar/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/scrollbar/horizontal_idle_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/scrollbar/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/scrollbar/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/scrollbar/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/scrollbar/vertical_hover_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/scrollbar/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/scrollbar/vertical_hover_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/scrollbar/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/scrollbar/vertical_idle_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/scrollbar/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/scrollbar/vertical_idle_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/skip.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/slider/horizontal_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/slider/horizontal_hover_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/slider/horizontal_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/slider/horizontal_hover_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/slider/horizontal_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/slider/horizontal_idle_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/slider/horizontal_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/slider/horizontal_idle_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/slider/vertical_hover_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/slider/vertical_hover_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/slider/vertical_hover_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/slider/vertical_hover_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/slider/vertical_idle_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/slider/vertical_idle_bar.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/slider/vertical_idle_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/slider/vertical_idle_thumb.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/textbox.png -------------------------------------------------------------------------------- /docsgame_source/game/gui/window_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/gui/window_icon.png -------------------------------------------------------------------------------- /docsgame_source/game/html_parser/build_entries.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/html_parser/build_entries.rpy -------------------------------------------------------------------------------- /docsgame_source/game/html_parser/formatter_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/html_parser/formatter_ren.py -------------------------------------------------------------------------------- /docsgame_source/game/html_parser/parser_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/html_parser/parser_ren.py -------------------------------------------------------------------------------- /docsgame_source/game/html_parser/styles.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/html_parser/styles.rpy -------------------------------------------------------------------------------- /docsgame_source/game/html_parser/utils_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/html_parser/utils_ren.py -------------------------------------------------------------------------------- /docsgame_source/game/images/ach_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/images/ach_icon.png -------------------------------------------------------------------------------- /docsgame_source/game/images/enc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/images/enc_icon.png -------------------------------------------------------------------------------- /docsgame_source/game/images/garden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/images/garden.png -------------------------------------------------------------------------------- /docsgame_source/game/images/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/images/library.png -------------------------------------------------------------------------------- /docsgame_source/game/images/morphing-diamonds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/images/morphing-diamonds.svg -------------------------------------------------------------------------------- /docsgame_source/game/library_enc.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/library_enc.rpy -------------------------------------------------------------------------------- /docsgame_source/game/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/options.rpy -------------------------------------------------------------------------------- /docsgame_source/game/screens/main_menu.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/screens/main_menu.rpy -------------------------------------------------------------------------------- /docsgame_source/game/screens/navigation.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/screens/navigation.rpy -------------------------------------------------------------------------------- /docsgame_source/game/screens/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/screens/screens.rpy -------------------------------------------------------------------------------- /docsgame_source/game/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/docsgame_source/game/script.rpy -------------------------------------------------------------------------------- /encyclopaedia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/__init__.py -------------------------------------------------------------------------------- /encyclopaedia/achentry_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/achentry_ren.py -------------------------------------------------------------------------------- /encyclopaedia/actions_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/actions_ren.py -------------------------------------------------------------------------------- /encyclopaedia/book/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/book/__init__.py -------------------------------------------------------------------------------- /encyclopaedia/book/actions_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/book/actions_ren.py -------------------------------------------------------------------------------- /encyclopaedia/book/book_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/book/book_ren.py -------------------------------------------------------------------------------- /encyclopaedia/config.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/config.rpy -------------------------------------------------------------------------------- /encyclopaedia/constants_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/constants_ren.py -------------------------------------------------------------------------------- /encyclopaedia/encentry_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/encentry_ren.py -------------------------------------------------------------------------------- /encyclopaedia/encentry_template_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/encentry_template_ren.py -------------------------------------------------------------------------------- /encyclopaedia/encyclopaedia_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/encyclopaedia_ren.py -------------------------------------------------------------------------------- /encyclopaedia/entry_sorting_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/entry_sorting_ren.py -------------------------------------------------------------------------------- /encyclopaedia/eventemitter_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/eventemitter_ren.py -------------------------------------------------------------------------------- /encyclopaedia/exceptions_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/exceptions_ren.py -------------------------------------------------------------------------------- /encyclopaedia/hyperlink_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/hyperlink_ren.py -------------------------------------------------------------------------------- /encyclopaedia/labels.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/labels.rpy -------------------------------------------------------------------------------- /encyclopaedia/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/screens.rpy -------------------------------------------------------------------------------- /encyclopaedia/text_block_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/text_block_ren.py -------------------------------------------------------------------------------- /encyclopaedia/types_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/types_ren.py -------------------------------------------------------------------------------- /encyclopaedia/utils_ren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/encyclopaedia/utils_ren.py -------------------------------------------------------------------------------- /encyclopaedia/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.6.0" 2 | -------------------------------------------------------------------------------- /mock_renpy/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/mock_renpy/README.rst -------------------------------------------------------------------------------- /mock_renpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mock_renpy/renpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/mock_renpy/renpy/__init__.py -------------------------------------------------------------------------------- /mock_renpy/renpy/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/mock_renpy/renpy/color.py -------------------------------------------------------------------------------- /mock_renpy/renpy/display/im.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mock_renpy/renpy/display/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/mock_renpy/renpy/display/transform.py -------------------------------------------------------------------------------- /mock_renpy/renpy/exports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/mock_renpy/renpy/exports.py -------------------------------------------------------------------------------- /mock_renpy/renpy/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/mock_renpy/renpy/game.py -------------------------------------------------------------------------------- /mock_renpy/renpy/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/mock_renpy/renpy/python.py -------------------------------------------------------------------------------- /mock_renpy/renpy/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/mock_renpy/renpy/store.py -------------------------------------------------------------------------------- /mock_renpy/renpy/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/mock_renpy/renpy/ui.py -------------------------------------------------------------------------------- /mock_renpy/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/mock_renpy/setup.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "stubPath": "mock_renpy" 3 | } 4 | -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /renpy_pygments/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.egg-info 3 | -------------------------------------------------------------------------------- /renpy_pygments/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/renpy_pygments/pyproject.toml -------------------------------------------------------------------------------- /renpy_pygments/renpy_pygments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /renpy_pygments/renpy_pygments/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/renpy_pygments/renpy_pygments/keywords.py -------------------------------------------------------------------------------- /renpy_pygments/renpy_pygments/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/renpy_pygments/renpy_pygments/lexer.py -------------------------------------------------------------------------------- /renpy_pygments/requirements_lint.txt: -------------------------------------------------------------------------------- 1 | isort==5.13.2 2 | pyright 3 | ruff 4 | 5 | # Required imports for type check 6 | pygments 7 | -------------------------------------------------------------------------------- /renpy_pygments/ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/renpy_pygments/ruff.toml -------------------------------------------------------------------------------- /renpy_pygments/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/renpy_pygments/tox.ini -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/docsgame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/requirements/docsgame.txt -------------------------------------------------------------------------------- /requirements/lint.txt: -------------------------------------------------------------------------------- 1 | isort==5.13.2 2 | pyright 3 | ruff 4 | -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/ruff.toml -------------------------------------------------------------------------------- /scripts/batch_rst2html5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/scripts/batch_rst2html5.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/actions/test_FilterBySubject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/actions/test_FilterBySubject.py -------------------------------------------------------------------------------- /tests/actions/test_SetEntry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/actions/test_SetEntry.py -------------------------------------------------------------------------------- /tests/actions/test_SortEncyclopaeda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/actions/test_SortEncyclopaeda.py -------------------------------------------------------------------------------- /tests/actions/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/actions/test_actions.py -------------------------------------------------------------------------------- /tests/actions/test_close_active_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/actions/test_close_active_entry.py -------------------------------------------------------------------------------- /tests/actions/test_next_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/actions/test_next_entry.py -------------------------------------------------------------------------------- /tests/actions/test_next_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/actions/test_next_page.py -------------------------------------------------------------------------------- /tests/actions/test_previous_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/actions/test_previous_entry.py -------------------------------------------------------------------------------- /tests/actions/test_previous_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/actions/test_previous_page.py -------------------------------------------------------------------------------- /tests/book/actions/test_book_actions_next_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/actions/test_book_actions_next_page.py -------------------------------------------------------------------------------- /tests/book/actions/test_book_actions_previous_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/actions/test_book_actions_previous_page.py -------------------------------------------------------------------------------- /tests/book/test_book_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/test_book_add.py -------------------------------------------------------------------------------- /tests/book/test_book_change_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/test_book_change_page.py -------------------------------------------------------------------------------- /tests/book/test_book_empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/test_book_empty.py -------------------------------------------------------------------------------- /tests/book/test_book_percentage_unlocked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/test_book_percentage_unlocked.py -------------------------------------------------------------------------------- /tests/book/test_book_persistent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/test_book_persistent.py -------------------------------------------------------------------------------- /tests/book/test_book_set_active_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/test_book_set_active_page.py -------------------------------------------------------------------------------- /tests/book/test_book_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/test_book_str.py -------------------------------------------------------------------------------- /tests/book/test_book_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/test_book_title.py -------------------------------------------------------------------------------- /tests/book/test_book_viewed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/test_book_viewed.py -------------------------------------------------------------------------------- /tests/book/test_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/book/test_locked.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/encentry/test_achievement_enc_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/encentry/test_achievement_enc_entry.py -------------------------------------------------------------------------------- /tests/encentry/test_encentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/encentry/test_encentry.py -------------------------------------------------------------------------------- /tests/encentry/test_encentry_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/encentry/test_encentry_locked.py -------------------------------------------------------------------------------- /tests/encentry/test_locked_persistent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/encentry/test_locked_persistent.py -------------------------------------------------------------------------------- /tests/encentry/test_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/encentry/test_str.py -------------------------------------------------------------------------------- /tests/encentry/test_viewed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/encentry/test_viewed.py -------------------------------------------------------------------------------- /tests/encentry/test_viewed_persistent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/encentry/test_viewed_persistent.py -------------------------------------------------------------------------------- /tests/encyclopaedia/test_change_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/encyclopaedia/test_change_entry.py -------------------------------------------------------------------------------- /tests/encyclopaedia/test_enc_sorting_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/encyclopaedia/test_enc_sorting_mode.py -------------------------------------------------------------------------------- /tests/encyclopaedia/test_encyclopaedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/encyclopaedia/test_encyclopaedia.py -------------------------------------------------------------------------------- /tests/encyclopaedia/test_set_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/encyclopaedia/test_set_entry.py -------------------------------------------------------------------------------- /tests/test_enc_entry_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/test_enc_entry_template.py -------------------------------------------------------------------------------- /tests/test_hyperlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/test_hyperlink.py -------------------------------------------------------------------------------- /tests/test_text_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tests/test_text_block.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsfehler/renpy-encyclopaedia/HEAD/tox.ini --------------------------------------------------------------------------------