├── .github ├── .github.link ├── .github.patch ├── commit-github └── workflows │ └── doc.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── issue_templates │ ├── .gitkeep │ └── feature_request.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── advanced_materials │ ├── architecture.md │ ├── freeciv.md │ ├── freeciv_web.md │ ├── fullgame_action.md │ ├── fullgame_description.md │ ├── fullgame_observation.md │ ├── fullgame_usage.md │ ├── game_setting_tables │ │ ├── basic_settings.csv │ │ ├── debug.csv │ │ └── parallel.csv │ ├── game_settings.md │ ├── llm_agent.md │ ├── minigame_create.md │ ├── minigame_setting.md │ ├── minigame_usage.md │ ├── parallel_training.md │ ├── selfplay.md │ └── tensor_agent.md ├── api_reference │ ├── environments.md │ ├── observations.md │ └── wrappers.md ├── assets │ ├── get_started │ │ ├── black.png │ │ ├── info.png │ │ ├── info_wait.png │ │ ├── login.png │ │ ├── obs_chat.png │ │ ├── obs_chat_full.png │ │ ├── obs_console.png │ │ ├── obs_console_myagent.png │ │ ├── obs_console_name.png │ │ ├── obs_full.png │ │ ├── obs_name.png │ │ ├── obs_wait.png │ │ ├── player_name.png │ │ ├── tab.png │ │ └── tab_wait.png │ ├── gtk_intro.png │ ├── gtk_tool_edit.png │ ├── gtk_tool_set.png │ ├── llm_agent.png │ ├── logo-64.png │ ├── logo-h48.png │ ├── minigame-load.png │ ├── minigame-login.png │ ├── minigame-success.png │ ├── punic_war_base.jpg │ ├── tensor-architecture.png │ ├── tensorboard-web.png │ ├── tensorboard.png │ └── workflow.png ├── css │ └── extra.css ├── getting_started │ ├── basic_usage.md │ ├── first_agent.md │ ├── installation.md │ ├── requirements.md │ ├── trouble_shooting.md │ └── visualization.md ├── googlef111bb2e9cb2716a.html ├── index.md ├── misc │ ├── faq.md │ └── resources.md ├── notes │ ├── benchmarks.md │ └── contribute.md └── releases │ └── releases.md ├── mkdocs.yaml ├── myagent_T50_2023-08-09-08_30_01_fix.sav ├── pyproject.toml ├── setup.py ├── src ├── civrealm │ ├── __init__.py │ ├── agents │ │ ├── __init__.py │ │ ├── base_agent.py │ │ ├── controller_agent.py │ │ ├── no_op_agent.py │ │ ├── random_agent.py │ │ └── random_language_agent.py │ ├── configs │ │ ├── __init__.py │ │ ├── dataset_settings.yaml │ │ ├── default_settings.yaml │ │ ├── docker-compose.yaml │ │ ├── llm_wrapper_settings.yaml │ │ └── logging_config.py │ ├── envs │ │ ├── __init__.py │ │ ├── freeciv_a3c_env.py │ │ ├── freeciv_base_env.py │ │ ├── freeciv_llm_env.py │ │ ├── freeciv_minitask_env.py │ │ ├── freeciv_parallel_env.py │ │ ├── freeciv_tensor_env.py │ │ ├── freeciv_tensor_minitask_env.py │ │ ├── freeciv_wrapper │ │ │ ├── __init__.py │ │ │ ├── action_wrapper.py │ │ │ ├── city_wrapper.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── dipl_wrapper.py │ │ │ ├── embark_wrapper.py │ │ │ ├── info_wrapper.py │ │ │ ├── llm_wrapper.py │ │ │ ├── mask_wrapper.py │ │ │ ├── observation_wrapper.py │ │ │ ├── reward_wrapper.py │ │ │ ├── tech_wrapper.py │ │ │ ├── tensor_base_wrapper.py │ │ │ ├── tensor_wrapper.py │ │ │ └── utils.py │ │ ├── parallel_self_play_env.py │ │ ├── parallel_tensor_env.py │ │ └── self_play_env.py │ ├── exception │ │ ├── __init__.py │ │ └── exceptions.py │ ├── freeciv │ │ ├── __init__.py │ │ ├── build_server.py │ │ ├── city │ │ │ ├── __init__.py │ │ │ ├── city_actions.py │ │ │ ├── city_ctrl.py │ │ │ └── city_state.py │ │ ├── civ_controller.py │ │ ├── clean.py │ │ ├── connectivity │ │ │ ├── __init__.py │ │ │ ├── civ_connection.py │ │ │ ├── client_state.py │ │ │ └── web_socket_client.py │ │ ├── game │ │ │ ├── __init__.py │ │ │ ├── game_ctrl.py │ │ │ ├── info_states.py │ │ │ ├── options_ctrl.py │ │ │ ├── ruleset.py │ │ │ └── user_auth.py │ │ ├── init_server.py │ │ ├── map │ │ │ ├── __init__.py │ │ │ ├── map_const.py │ │ │ ├── map_ctrl.py │ │ │ ├── map_state.py │ │ │ └── tile.py │ │ ├── misc │ │ │ ├── freeciv_wiki.py │ │ │ ├── modified_javascript_for_screenshot │ │ │ │ └── javascript │ │ │ │ │ ├── city.js │ │ │ │ │ ├── civclient.js │ │ │ │ │ ├── control.js │ │ │ │ │ ├── diplomacy.js │ │ │ │ │ ├── messages.js │ │ │ │ │ └── tech.js │ │ │ └── modified_server_code │ │ │ │ ├── DeleteSaveGame.java │ │ │ │ ├── ListSaveGames.java │ │ │ │ ├── publite2.py │ │ │ │ ├── pubscript_multiplayer.serv │ │ │ │ ├── pubscript_singleplayer.serv │ │ │ │ ├── settings.ini │ │ │ │ └── units.ruleset │ │ ├── players │ │ │ ├── __init__.py │ │ │ ├── diplomacy_actions.py │ │ │ ├── diplomacy_state_ctrl.py │ │ │ ├── government.py │ │ │ ├── player_actions.py │ │ │ ├── player_const.py │ │ │ ├── player_ctrl.py │ │ │ ├── player_helpers.py │ │ │ └── player_state.py │ │ ├── tech │ │ │ ├── __init__.py │ │ │ ├── req_info.py │ │ │ ├── reqtree.py │ │ │ ├── tech_actions.py │ │ │ ├── tech_const.py │ │ │ ├── tech_ctrl.py │ │ │ ├── tech_helpers.py │ │ │ └── tech_state.py │ │ ├── turn_manager.py │ │ ├── units │ │ │ ├── __init__.py │ │ │ ├── action_dialog.py │ │ │ ├── spacerace.py │ │ │ ├── unit_actions.py │ │ │ ├── unit_ctrl.py │ │ │ ├── unit_helpers.py │ │ │ └── unit_state.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── banlist.py │ │ │ ├── base_action.py │ │ │ ├── base_controller.py │ │ │ ├── base_state.py │ │ │ ├── civ_monitor.py │ │ │ ├── create_packhand.py │ │ │ ├── data_handler.py │ │ │ ├── eval_tags.py │ │ │ ├── fc_events.py │ │ │ ├── fc_types.py │ │ │ ├── freeciv_logging.py │ │ │ ├── language_agent_utility.py │ │ │ ├── parallel_helper.py │ │ │ ├── port_list.py │ │ │ ├── port_utils.py │ │ │ ├── test_utils.py │ │ │ ├── unit_improvement_const.py │ │ │ ├── utility.py │ │ │ └── version │ │ │ ├── __init__.py │ │ │ ├── v13.py │ │ │ └── v14.py │ ├── game_ai_assistant.py │ ├── parallel_tensor.py │ ├── random_game.py │ ├── random_game_minitask.py │ ├── random_game_parallel.py │ ├── random_game_self_play.py │ ├── random_game_seq.py │ ├── runners │ │ ├── __init__.py │ │ ├── a3c_runner.py │ │ ├── parallel_runner.py │ │ └── parallel_tensor_runner.py │ └── to_be_structured │ │ ├── map-from-image.js │ │ ├── replay.js │ │ ├── savegame.js │ │ └── scorelog.js └── logging.conf └── tests ├── city ├── test_city_buy_if_anarchy.py ├── test_city_buy_prod.py ├── test_city_change_improve_prod.py ├── test_city_change_specialist.py ├── test_city_change_unit_prod.py ├── test_city_sell_improvement.py ├── test_city_unwork.py └── test_city_work.py ├── conftest.py ├── copy_ci_test_saves.py ├── demo ├── demo_player1.py └── demo_player2.py ├── demo_v2 ├── demo_player1.py ├── demo_player2.py └── image_update.sh ├── deprecated_test_connectivity.py ├── dipl ├── test_dipl_accept_treaty.py ├── test_dipl_add_clause.py ├── test_dipl_cancel_treaty.py ├── test_dipl_cancel_vision.py ├── test_dipl_remove_clause.py ├── test_dipl_start_negotiate.py ├── test_dipl_stop_negotiate.py ├── test_dipl_trade_city.py ├── test_dipl_trade_gold.py └── test_dipl_trade_tech.py ├── env ├── test_allied_victory.py ├── test_culture_victory.py ├── test_tech_victory.py ├── test_tensor_env.py ├── test_tensor_minitask_env.py └── val_loading_minitask_env.py ├── game_save ├── demoplayer1 │ └── demoplayer1_T27_2023-07-10-05_23.sav ├── minitask │ ├── minitask_T1_level_easy_id_0.sav │ ├── minitask_T1_level_hard_id_99.sav │ └── minitask_T1_level_normal_id_99.sav ├── myagent │ ├── myagent_T1_BATTLEANCIENTERA.sav │ ├── myagent_T1_BATTLEINDUSTRYERA.sav │ ├── myagent_T1_BATTLEINFOERA │ ├── myagent_T1_BATTLEMEDIEVAL.sav │ ├── myagent_T1_BATTLEMODERNERA.sav │ ├── myagent_T1_BUILDCITY.sav.xz │ ├── myagent_T1_BUILDCITYOPPO.sav │ ├── myagent_T1_UNITBATTLE1.sav │ ├── myagent_T27_BATTLE.sav.zst │ ├── myagent_T401_2023-08-24-04_59.sav.xz │ ├── myagent_T50_2023-08-09-08_30_01.sav │ ├── myagent_T50_2023-08-09-08_30_02.sav │ ├── myagent_T50_2023-08-09-08_30_03.sav │ ├── myagent_T56_PRODANDBATTLE.sav │ └── myagent_T8_2023-08-07-08_11.sav ├── saved_games.md ├── testcontroller │ ├── testcontroller_T133_2023-07-20-15_23_diplcity.sav.zst │ ├── testcontroller_T133_2023-07-25-08_57.sav.zst │ ├── testcontroller_T133_steal.sav.zst │ ├── testcontroller_T134_sabotage.sav.zst │ ├── testcontroller_T139_2023-07-28-09_49.sav.zst │ ├── testcontroller_T144_conquer_city.sav.zst │ ├── testcontroller_T154_bribe.sav.zst │ ├── testcontroller_T169_2023-07-19-13_11.sav.zst │ ├── testcontroller_T169_2023-07-26-09_04.sav.zst │ ├── testcontroller_T169_2023-07-26-10_28.sav.zst │ ├── testcontroller_T169_2023-07-27-01_24.sav.zst │ ├── testcontroller_T169_2023-07-27-05_01.sav.zst │ ├── testcontroller_T170_2023-07-27-02_09.sav.zst │ ├── testcontroller_T173_embark.sav.zst │ ├── testcontroller_T200_2023-07-31-01_51.sav.zst │ ├── testcontroller_T201_2023-07-31-07_46.sav.zst │ ├── testcontroller_T203_pillage.sav.zst │ ├── testcontroller_T228_2023-09-12-03_33.sav.zst │ ├── testcontroller_T230_2023-09-08-09_14.sav.zst │ ├── testcontroller_T241_2023-09-12-14_20.sav.zst │ ├── testcontroller_T257_2023-08-07-14_04.sav.zst │ ├── testcontroller_T27_2023-07-10-05_23.sav.zst │ ├── testcontroller_T27_2023-07-20-05_37.sav.zst │ ├── testcontroller_T27_2023-07-27-07_59.sav.zst │ ├── testcontroller_T27_mine.sav.zst │ ├── testcontroller_T28_goto.sav.zst │ ├── testcontroller_T28_hut_enter.sav.zst │ ├── testcontroller_T30_2023-07-31-09_09.sav.zst │ ├── testcontroller_T31_2023-07-31-09_38.sav.zst │ ├── testcontroller_T34_2023-07-25-08_45.sav.zst │ ├── testcontroller_T354_2023-09-19-08_01.sav.zst │ ├── testcontroller_T359_2023-09-06-10_02.sav.zst │ ├── testcontroller_T370_2023-08-01-06_00.sav.zst │ ├── testcontroller_T370_tech_victory.sav │ ├── testcontroller_T375_embark_disembark.sav.zst │ ├── testcontroller_T376_load_deboard_unload.sav.zst │ ├── testcontroller_T379_2023-08-09-06_16.sav.zst │ ├── testcontroller_T37_2023-07-20-02_25.sav.zst │ ├── testcontroller_T37_2023-07-25-09_01.sav.zst │ ├── testcontroller_T385_embassy_investigate.sav.zst │ ├── testcontroller_T391_transform.sav.zst │ ├── testcontroller_T42_2023-07-25-05_54.sav.zst │ ├── testcontroller_T52_2023-07-26-02_14.sav.zst │ ├── testcontroller_T52_join_city.sav.zst │ ├── testcontroller_T53_2023-07-21-04_53.sav.zst │ ├── testcontroller_T53_2023-07-27-02_29_homecity.sav.zst │ ├── testcontroller_T54_2023-07-19-11_58.sav.zst │ ├── testcontroller_T677_2023-09-14-13_26.sav.zst │ ├── testcontroller_T82_attack.sav.zst │ ├── testcontroller_T84_2023-07-19-11_23.sav.zst │ ├── testcontroller_T84_2023-07-19-11_34.sav.zst │ ├── testcontroller_T87_2023-07-19-11_44.sav.zst │ └── testcontroller_T91_2023-07-26-04_25.sav.zst ├── testminitask │ ├── testminitask_T1_culture_victory.sav │ └── testminitask_T5_allied_victory.sav └── tutorial │ └── civtutorial.sav ├── gov ├── test_change_government.py ├── test_gov_decrease_lux.py ├── test_gov_decrease_sci.py ├── test_gov_decrease_tax.py ├── test_gov_increase_lux.py ├── test_gov_increase_sci.py ├── test_gov_increase_tax.py └── test_gov_set_sci_lux_tax.py ├── tech ├── test_choose_research_goal.py └── test_choose_research_tech.py └── unit ├── deprecated_test_disband.py ├── test_airbase.py ├── test_attack.py ├── test_build_city.py ├── test_build_city2.py ├── test_build_railroad.py ├── test_build_road.py ├── test_cancel_order.py ├── test_conquer_city.py ├── test_cultivate.py ├── test_embark_2.py ├── test_embark_disembark.py ├── test_embassy_stay.py ├── test_fortify.py ├── test_fortress.py ├── test_get_action_pro.py ├── test_get_action_pro2.py ├── test_get_action_pro3.py ├── test_get_action_pro_spy_bribe.py ├── test_get_action_pro_spy_steal.py ├── test_homecity.py ├── test_hut_enter.py ├── test_investigate_spend.py ├── test_irrigation.py ├── test_join_city.py ├── test_load_deboard_unload.py ├── test_mine.py ├── test_mine_desert.py ├── test_move_to.py ├── test_pillage.py ├── test_plant.py ├── test_pollution.py ├── test_spy_bribe_unit.py ├── test_spy_sabotage_city.py ├── test_spy_steal_tech.py ├── test_trade_route_market.py ├── test_transform.py └── test_upgrade.py /.github/.github.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/.github/.github.link -------------------------------------------------------------------------------- /.github/.github.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/.github/.github.patch -------------------------------------------------------------------------------- /.github/commit-github: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/.github/commit-github -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitlab/issue_templates/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/.gitlab/issue_templates/feature_request.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include src/civrealm *.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/README.md -------------------------------------------------------------------------------- /docs/advanced_materials/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/architecture.md -------------------------------------------------------------------------------- /docs/advanced_materials/freeciv.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/advanced_materials/freeciv_web.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/advanced_materials/fullgame_action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/fullgame_action.md -------------------------------------------------------------------------------- /docs/advanced_materials/fullgame_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/fullgame_description.md -------------------------------------------------------------------------------- /docs/advanced_materials/fullgame_observation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/fullgame_observation.md -------------------------------------------------------------------------------- /docs/advanced_materials/fullgame_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/fullgame_usage.md -------------------------------------------------------------------------------- /docs/advanced_materials/game_setting_tables/basic_settings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/game_setting_tables/basic_settings.csv -------------------------------------------------------------------------------- /docs/advanced_materials/game_setting_tables/debug.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/game_setting_tables/debug.csv -------------------------------------------------------------------------------- /docs/advanced_materials/game_setting_tables/parallel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/game_setting_tables/parallel.csv -------------------------------------------------------------------------------- /docs/advanced_materials/game_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/game_settings.md -------------------------------------------------------------------------------- /docs/advanced_materials/llm_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/llm_agent.md -------------------------------------------------------------------------------- /docs/advanced_materials/minigame_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/minigame_create.md -------------------------------------------------------------------------------- /docs/advanced_materials/minigame_setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/minigame_setting.md -------------------------------------------------------------------------------- /docs/advanced_materials/minigame_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/minigame_usage.md -------------------------------------------------------------------------------- /docs/advanced_materials/parallel_training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/parallel_training.md -------------------------------------------------------------------------------- /docs/advanced_materials/selfplay.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/advanced_materials/tensor_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/advanced_materials/tensor_agent.md -------------------------------------------------------------------------------- /docs/api_reference/environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/api_reference/environments.md -------------------------------------------------------------------------------- /docs/api_reference/observations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/api_reference/observations.md -------------------------------------------------------------------------------- /docs/api_reference/wrappers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/api_reference/wrappers.md -------------------------------------------------------------------------------- /docs/assets/get_started/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/black.png -------------------------------------------------------------------------------- /docs/assets/get_started/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/info.png -------------------------------------------------------------------------------- /docs/assets/get_started/info_wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/info_wait.png -------------------------------------------------------------------------------- /docs/assets/get_started/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/login.png -------------------------------------------------------------------------------- /docs/assets/get_started/obs_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/obs_chat.png -------------------------------------------------------------------------------- /docs/assets/get_started/obs_chat_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/obs_chat_full.png -------------------------------------------------------------------------------- /docs/assets/get_started/obs_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/obs_console.png -------------------------------------------------------------------------------- /docs/assets/get_started/obs_console_myagent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/obs_console_myagent.png -------------------------------------------------------------------------------- /docs/assets/get_started/obs_console_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/obs_console_name.png -------------------------------------------------------------------------------- /docs/assets/get_started/obs_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/obs_full.png -------------------------------------------------------------------------------- /docs/assets/get_started/obs_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/obs_name.png -------------------------------------------------------------------------------- /docs/assets/get_started/obs_wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/obs_wait.png -------------------------------------------------------------------------------- /docs/assets/get_started/player_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/player_name.png -------------------------------------------------------------------------------- /docs/assets/get_started/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/tab.png -------------------------------------------------------------------------------- /docs/assets/get_started/tab_wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/get_started/tab_wait.png -------------------------------------------------------------------------------- /docs/assets/gtk_intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/gtk_intro.png -------------------------------------------------------------------------------- /docs/assets/gtk_tool_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/gtk_tool_edit.png -------------------------------------------------------------------------------- /docs/assets/gtk_tool_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/gtk_tool_set.png -------------------------------------------------------------------------------- /docs/assets/llm_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/llm_agent.png -------------------------------------------------------------------------------- /docs/assets/logo-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/logo-64.png -------------------------------------------------------------------------------- /docs/assets/logo-h48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/logo-h48.png -------------------------------------------------------------------------------- /docs/assets/minigame-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/minigame-load.png -------------------------------------------------------------------------------- /docs/assets/minigame-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/minigame-login.png -------------------------------------------------------------------------------- /docs/assets/minigame-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/minigame-success.png -------------------------------------------------------------------------------- /docs/assets/punic_war_base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/punic_war_base.jpg -------------------------------------------------------------------------------- /docs/assets/tensor-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/tensor-architecture.png -------------------------------------------------------------------------------- /docs/assets/tensorboard-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/tensorboard-web.png -------------------------------------------------------------------------------- /docs/assets/tensorboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/tensorboard.png -------------------------------------------------------------------------------- /docs/assets/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/assets/workflow.png -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/css/extra.css -------------------------------------------------------------------------------- /docs/getting_started/basic_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/getting_started/basic_usage.md -------------------------------------------------------------------------------- /docs/getting_started/first_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/getting_started/first_agent.md -------------------------------------------------------------------------------- /docs/getting_started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/getting_started/installation.md -------------------------------------------------------------------------------- /docs/getting_started/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/getting_started/requirements.md -------------------------------------------------------------------------------- /docs/getting_started/trouble_shooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/getting_started/trouble_shooting.md -------------------------------------------------------------------------------- /docs/getting_started/visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/getting_started/visualization.md -------------------------------------------------------------------------------- /docs/googlef111bb2e9cb2716a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/googlef111bb2e9cb2716a.html -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/misc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/misc/faq.md -------------------------------------------------------------------------------- /docs/misc/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/misc/resources.md -------------------------------------------------------------------------------- /docs/notes/benchmarks.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/notes/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/notes/contribute.md -------------------------------------------------------------------------------- /docs/releases/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/docs/releases/releases.md -------------------------------------------------------------------------------- /mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/mkdocs.yaml -------------------------------------------------------------------------------- /myagent_T50_2023-08-09-08_30_01_fix.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/myagent_T50_2023-08-09-08_30_01_fix.sav -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/setup.py -------------------------------------------------------------------------------- /src/civrealm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/__init__.py -------------------------------------------------------------------------------- /src/civrealm/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/agents/__init__.py -------------------------------------------------------------------------------- /src/civrealm/agents/base_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/agents/base_agent.py -------------------------------------------------------------------------------- /src/civrealm/agents/controller_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/agents/controller_agent.py -------------------------------------------------------------------------------- /src/civrealm/agents/no_op_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/agents/no_op_agent.py -------------------------------------------------------------------------------- /src/civrealm/agents/random_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/agents/random_agent.py -------------------------------------------------------------------------------- /src/civrealm/agents/random_language_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/agents/random_language_agent.py -------------------------------------------------------------------------------- /src/civrealm/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/configs/__init__.py -------------------------------------------------------------------------------- /src/civrealm/configs/dataset_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/configs/dataset_settings.yaml -------------------------------------------------------------------------------- /src/civrealm/configs/default_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/configs/default_settings.yaml -------------------------------------------------------------------------------- /src/civrealm/configs/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/configs/docker-compose.yaml -------------------------------------------------------------------------------- /src/civrealm/configs/llm_wrapper_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/configs/llm_wrapper_settings.yaml -------------------------------------------------------------------------------- /src/civrealm/configs/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/configs/logging_config.py -------------------------------------------------------------------------------- /src/civrealm/envs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/__init__.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_a3c_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_a3c_env.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_base_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_base_env.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_llm_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_llm_env.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_minitask_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_minitask_env.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_parallel_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_parallel_env.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_tensor_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_tensor_env.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_tensor_minitask_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_tensor_minitask_env.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/__init__.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/action_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/action_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/city_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/city_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/config.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/core.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/dipl_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/dipl_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/embark_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/embark_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/info_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/info_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/llm_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/llm_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/mask_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/mask_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/observation_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/observation_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/reward_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/reward_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/tech_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/tech_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/tensor_base_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/tensor_base_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/tensor_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/tensor_wrapper.py -------------------------------------------------------------------------------- /src/civrealm/envs/freeciv_wrapper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/freeciv_wrapper/utils.py -------------------------------------------------------------------------------- /src/civrealm/envs/parallel_self_play_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/parallel_self_play_env.py -------------------------------------------------------------------------------- /src/civrealm/envs/parallel_tensor_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/parallel_tensor_env.py -------------------------------------------------------------------------------- /src/civrealm/envs/self_play_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/envs/self_play_env.py -------------------------------------------------------------------------------- /src/civrealm/exception/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/exception/__init__.py -------------------------------------------------------------------------------- /src/civrealm/exception/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/exception/exceptions.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/civrealm/freeciv/build_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/build_server.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/city/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/civrealm/freeciv/city/city_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/city/city_actions.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/city/city_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/city/city_ctrl.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/city/city_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/city/city_state.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/civ_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/civ_controller.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/clean.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/connectivity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/civrealm/freeciv/connectivity/civ_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/connectivity/civ_connection.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/connectivity/client_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/connectivity/client_state.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/connectivity/web_socket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/connectivity/web_socket_client.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/civrealm/freeciv/game/game_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/game/game_ctrl.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/game/info_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/game/info_states.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/game/options_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/game/options_ctrl.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/game/ruleset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/game/ruleset.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/game/user_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/game/user_auth.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/init_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/init_server.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/map/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/civrealm/freeciv/map/map_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/map/map_const.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/map/map_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/map/map_ctrl.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/map/map_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/map/map_state.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/map/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/map/tile.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/freeciv_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/freeciv_wiki.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/city.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/city.js -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/civclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/civclient.js -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/control.js -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/diplomacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/diplomacy.js -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/messages.js -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/tech.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_javascript_for_screenshot/javascript/tech.js -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_server_code/DeleteSaveGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_server_code/DeleteSaveGame.java -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_server_code/ListSaveGames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_server_code/ListSaveGames.java -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_server_code/publite2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_server_code/publite2.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_server_code/pubscript_multiplayer.serv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_server_code/pubscript_multiplayer.serv -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_server_code/pubscript_singleplayer.serv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_server_code/pubscript_singleplayer.serv -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_server_code/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_server_code/settings.ini -------------------------------------------------------------------------------- /src/civrealm/freeciv/misc/modified_server_code/units.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/misc/modified_server_code/units.ruleset -------------------------------------------------------------------------------- /src/civrealm/freeciv/players/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/civrealm/freeciv/players/diplomacy_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/players/diplomacy_actions.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/players/diplomacy_state_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/players/diplomacy_state_ctrl.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/players/government.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/players/government.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/players/player_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/players/player_actions.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/players/player_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/players/player_const.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/players/player_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/players/player_ctrl.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/players/player_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/players/player_helpers.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/players/player_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/players/player_state.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/tech/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/civrealm/freeciv/tech/req_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/tech/req_info.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/tech/reqtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/tech/reqtree.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/tech/tech_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/tech/tech_actions.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/tech/tech_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/tech/tech_const.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/tech/tech_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/tech/tech_ctrl.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/tech/tech_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/tech/tech_helpers.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/tech/tech_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/tech/tech_state.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/turn_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/turn_manager.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/units/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/civrealm/freeciv/units/action_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/units/action_dialog.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/units/spacerace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/units/spacerace.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/units/unit_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/units/unit_actions.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/units/unit_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/units/unit_ctrl.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/units/unit_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/units/unit_helpers.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/units/unit_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/units/unit_state.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/banlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/banlist.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/base_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/base_action.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/base_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/base_controller.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/base_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/base_state.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/civ_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/civ_monitor.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/create_packhand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/create_packhand.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/data_handler.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/eval_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/eval_tags.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/fc_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/fc_events.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/fc_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/fc_types.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/freeciv_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/freeciv_logging.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/language_agent_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/language_agent_utility.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/parallel_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/parallel_helper.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/port_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/port_list.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/port_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/port_utils.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/test_utils.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/unit_improvement_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/unit_improvement_const.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/utility.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/version/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/version/v13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/version/v13.py -------------------------------------------------------------------------------- /src/civrealm/freeciv/utils/version/v14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/freeciv/utils/version/v14.py -------------------------------------------------------------------------------- /src/civrealm/game_ai_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/game_ai_assistant.py -------------------------------------------------------------------------------- /src/civrealm/parallel_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/parallel_tensor.py -------------------------------------------------------------------------------- /src/civrealm/random_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/random_game.py -------------------------------------------------------------------------------- /src/civrealm/random_game_minitask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/random_game_minitask.py -------------------------------------------------------------------------------- /src/civrealm/random_game_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/random_game_parallel.py -------------------------------------------------------------------------------- /src/civrealm/random_game_self_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/random_game_self_play.py -------------------------------------------------------------------------------- /src/civrealm/random_game_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/random_game_seq.py -------------------------------------------------------------------------------- /src/civrealm/runners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/runners/__init__.py -------------------------------------------------------------------------------- /src/civrealm/runners/a3c_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/runners/a3c_runner.py -------------------------------------------------------------------------------- /src/civrealm/runners/parallel_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/runners/parallel_runner.py -------------------------------------------------------------------------------- /src/civrealm/runners/parallel_tensor_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/runners/parallel_tensor_runner.py -------------------------------------------------------------------------------- /src/civrealm/to_be_structured/map-from-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/to_be_structured/map-from-image.js -------------------------------------------------------------------------------- /src/civrealm/to_be_structured/replay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/to_be_structured/replay.js -------------------------------------------------------------------------------- /src/civrealm/to_be_structured/savegame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/to_be_structured/savegame.js -------------------------------------------------------------------------------- /src/civrealm/to_be_structured/scorelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/civrealm/to_be_structured/scorelog.js -------------------------------------------------------------------------------- /src/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/src/logging.conf -------------------------------------------------------------------------------- /tests/city/test_city_buy_if_anarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/city/test_city_buy_if_anarchy.py -------------------------------------------------------------------------------- /tests/city/test_city_buy_prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/city/test_city_buy_prod.py -------------------------------------------------------------------------------- /tests/city/test_city_change_improve_prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/city/test_city_change_improve_prod.py -------------------------------------------------------------------------------- /tests/city/test_city_change_specialist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/city/test_city_change_specialist.py -------------------------------------------------------------------------------- /tests/city/test_city_change_unit_prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/city/test_city_change_unit_prod.py -------------------------------------------------------------------------------- /tests/city/test_city_sell_improvement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/city/test_city_sell_improvement.py -------------------------------------------------------------------------------- /tests/city/test_city_unwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/city/test_city_unwork.py -------------------------------------------------------------------------------- /tests/city/test_city_work.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/city/test_city_work.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/copy_ci_test_saves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/copy_ci_test_saves.py -------------------------------------------------------------------------------- /tests/demo/demo_player1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/demo/demo_player1.py -------------------------------------------------------------------------------- /tests/demo/demo_player2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/demo/demo_player2.py -------------------------------------------------------------------------------- /tests/demo_v2/demo_player1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/demo_v2/demo_player1.py -------------------------------------------------------------------------------- /tests/demo_v2/demo_player2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/demo_v2/demo_player2.py -------------------------------------------------------------------------------- /tests/demo_v2/image_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/demo_v2/image_update.sh -------------------------------------------------------------------------------- /tests/deprecated_test_connectivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/deprecated_test_connectivity.py -------------------------------------------------------------------------------- /tests/dipl/test_dipl_accept_treaty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/dipl/test_dipl_accept_treaty.py -------------------------------------------------------------------------------- /tests/dipl/test_dipl_add_clause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/dipl/test_dipl_add_clause.py -------------------------------------------------------------------------------- /tests/dipl/test_dipl_cancel_treaty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/dipl/test_dipl_cancel_treaty.py -------------------------------------------------------------------------------- /tests/dipl/test_dipl_cancel_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/dipl/test_dipl_cancel_vision.py -------------------------------------------------------------------------------- /tests/dipl/test_dipl_remove_clause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/dipl/test_dipl_remove_clause.py -------------------------------------------------------------------------------- /tests/dipl/test_dipl_start_negotiate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/dipl/test_dipl_start_negotiate.py -------------------------------------------------------------------------------- /tests/dipl/test_dipl_stop_negotiate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/dipl/test_dipl_stop_negotiate.py -------------------------------------------------------------------------------- /tests/dipl/test_dipl_trade_city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/dipl/test_dipl_trade_city.py -------------------------------------------------------------------------------- /tests/dipl/test_dipl_trade_gold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/dipl/test_dipl_trade_gold.py -------------------------------------------------------------------------------- /tests/dipl/test_dipl_trade_tech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/dipl/test_dipl_trade_tech.py -------------------------------------------------------------------------------- /tests/env/test_allied_victory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/env/test_allied_victory.py -------------------------------------------------------------------------------- /tests/env/test_culture_victory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/env/test_culture_victory.py -------------------------------------------------------------------------------- /tests/env/test_tech_victory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/env/test_tech_victory.py -------------------------------------------------------------------------------- /tests/env/test_tensor_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/env/test_tensor_env.py -------------------------------------------------------------------------------- /tests/env/test_tensor_minitask_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/env/test_tensor_minitask_env.py -------------------------------------------------------------------------------- /tests/env/val_loading_minitask_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/env/val_loading_minitask_env.py -------------------------------------------------------------------------------- /tests/game_save/demoplayer1/demoplayer1_T27_2023-07-10-05_23.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/demoplayer1/demoplayer1_T27_2023-07-10-05_23.sav -------------------------------------------------------------------------------- /tests/game_save/minitask/minitask_T1_level_easy_id_0.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/minitask/minitask_T1_level_easy_id_0.sav -------------------------------------------------------------------------------- /tests/game_save/minitask/minitask_T1_level_hard_id_99.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/minitask/minitask_T1_level_hard_id_99.sav -------------------------------------------------------------------------------- /tests/game_save/minitask/minitask_T1_level_normal_id_99.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/minitask/minitask_T1_level_normal_id_99.sav -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T1_BATTLEANCIENTERA.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T1_BATTLEANCIENTERA.sav -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T1_BATTLEINDUSTRYERA.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T1_BATTLEINDUSTRYERA.sav -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T1_BATTLEINFOERA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T1_BATTLEINFOERA -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T1_BATTLEMEDIEVAL.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T1_BATTLEMEDIEVAL.sav -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T1_BATTLEMODERNERA.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T1_BATTLEMODERNERA.sav -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T1_BUILDCITY.sav.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T1_BUILDCITY.sav.xz -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T1_BUILDCITYOPPO.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T1_BUILDCITYOPPO.sav -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T1_UNITBATTLE1.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T1_UNITBATTLE1.sav -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T27_BATTLE.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T27_BATTLE.sav.zst -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T401_2023-08-24-04_59.sav.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T401_2023-08-24-04_59.sav.xz -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T50_2023-08-09-08_30_01.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T50_2023-08-09-08_30_01.sav -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T50_2023-08-09-08_30_02.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T50_2023-08-09-08_30_02.sav -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T50_2023-08-09-08_30_03.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T50_2023-08-09-08_30_03.sav -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T56_PRODANDBATTLE.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T56_PRODANDBATTLE.sav -------------------------------------------------------------------------------- /tests/game_save/myagent/myagent_T8_2023-08-07-08_11.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/myagent/myagent_T8_2023-08-07-08_11.sav -------------------------------------------------------------------------------- /tests/game_save/saved_games.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/saved_games.md -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T133_2023-07-20-15_23_diplcity.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T133_2023-07-20-15_23_diplcity.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T133_2023-07-25-08_57.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T133_2023-07-25-08_57.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T133_steal.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T133_steal.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T134_sabotage.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T134_sabotage.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T139_2023-07-28-09_49.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T139_2023-07-28-09_49.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T144_conquer_city.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T144_conquer_city.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T154_bribe.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T154_bribe.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T169_2023-07-19-13_11.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T169_2023-07-19-13_11.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T169_2023-07-26-09_04.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T169_2023-07-26-09_04.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T169_2023-07-26-10_28.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T169_2023-07-26-10_28.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T169_2023-07-27-01_24.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T169_2023-07-27-01_24.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T169_2023-07-27-05_01.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T169_2023-07-27-05_01.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T170_2023-07-27-02_09.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T170_2023-07-27-02_09.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T173_embark.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T173_embark.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T200_2023-07-31-01_51.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T200_2023-07-31-01_51.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T201_2023-07-31-07_46.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T201_2023-07-31-07_46.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T203_pillage.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T203_pillage.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T228_2023-09-12-03_33.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T228_2023-09-12-03_33.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T230_2023-09-08-09_14.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T230_2023-09-08-09_14.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T241_2023-09-12-14_20.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T241_2023-09-12-14_20.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T257_2023-08-07-14_04.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T257_2023-08-07-14_04.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T27_2023-07-10-05_23.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T27_2023-07-10-05_23.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T27_2023-07-20-05_37.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T27_2023-07-20-05_37.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T27_2023-07-27-07_59.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T27_2023-07-27-07_59.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T27_mine.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T27_mine.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T28_goto.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T28_goto.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T28_hut_enter.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T28_hut_enter.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T30_2023-07-31-09_09.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T30_2023-07-31-09_09.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T31_2023-07-31-09_38.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T31_2023-07-31-09_38.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T34_2023-07-25-08_45.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T34_2023-07-25-08_45.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T354_2023-09-19-08_01.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T354_2023-09-19-08_01.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T359_2023-09-06-10_02.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T359_2023-09-06-10_02.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T370_2023-08-01-06_00.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T370_2023-08-01-06_00.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T370_tech_victory.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T370_tech_victory.sav -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T375_embark_disembark.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T375_embark_disembark.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T376_load_deboard_unload.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T376_load_deboard_unload.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T379_2023-08-09-06_16.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T379_2023-08-09-06_16.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T37_2023-07-20-02_25.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T37_2023-07-20-02_25.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T37_2023-07-25-09_01.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T37_2023-07-25-09_01.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T385_embassy_investigate.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T385_embassy_investigate.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T391_transform.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T391_transform.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T42_2023-07-25-05_54.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T42_2023-07-25-05_54.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T52_2023-07-26-02_14.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T52_2023-07-26-02_14.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T52_join_city.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T52_join_city.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T53_2023-07-21-04_53.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T53_2023-07-21-04_53.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T53_2023-07-27-02_29_homecity.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T53_2023-07-27-02_29_homecity.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T54_2023-07-19-11_58.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T54_2023-07-19-11_58.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T677_2023-09-14-13_26.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T677_2023-09-14-13_26.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T82_attack.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T82_attack.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T84_2023-07-19-11_23.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T84_2023-07-19-11_23.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T84_2023-07-19-11_34.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T84_2023-07-19-11_34.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T87_2023-07-19-11_44.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T87_2023-07-19-11_44.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testcontroller/testcontroller_T91_2023-07-26-04_25.sav.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testcontroller/testcontroller_T91_2023-07-26-04_25.sav.zst -------------------------------------------------------------------------------- /tests/game_save/testminitask/testminitask_T1_culture_victory.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testminitask/testminitask_T1_culture_victory.sav -------------------------------------------------------------------------------- /tests/game_save/testminitask/testminitask_T5_allied_victory.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/testminitask/testminitask_T5_allied_victory.sav -------------------------------------------------------------------------------- /tests/game_save/tutorial/civtutorial.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/game_save/tutorial/civtutorial.sav -------------------------------------------------------------------------------- /tests/gov/test_change_government.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/gov/test_change_government.py -------------------------------------------------------------------------------- /tests/gov/test_gov_decrease_lux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/gov/test_gov_decrease_lux.py -------------------------------------------------------------------------------- /tests/gov/test_gov_decrease_sci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/gov/test_gov_decrease_sci.py -------------------------------------------------------------------------------- /tests/gov/test_gov_decrease_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/gov/test_gov_decrease_tax.py -------------------------------------------------------------------------------- /tests/gov/test_gov_increase_lux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/gov/test_gov_increase_lux.py -------------------------------------------------------------------------------- /tests/gov/test_gov_increase_sci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/gov/test_gov_increase_sci.py -------------------------------------------------------------------------------- /tests/gov/test_gov_increase_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/gov/test_gov_increase_tax.py -------------------------------------------------------------------------------- /tests/gov/test_gov_set_sci_lux_tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/gov/test_gov_set_sci_lux_tax.py -------------------------------------------------------------------------------- /tests/tech/test_choose_research_goal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/tech/test_choose_research_goal.py -------------------------------------------------------------------------------- /tests/tech/test_choose_research_tech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/tech/test_choose_research_tech.py -------------------------------------------------------------------------------- /tests/unit/deprecated_test_disband.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/deprecated_test_disband.py -------------------------------------------------------------------------------- /tests/unit/test_airbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_airbase.py -------------------------------------------------------------------------------- /tests/unit/test_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_attack.py -------------------------------------------------------------------------------- /tests/unit/test_build_city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_build_city.py -------------------------------------------------------------------------------- /tests/unit/test_build_city2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_build_city2.py -------------------------------------------------------------------------------- /tests/unit/test_build_railroad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_build_railroad.py -------------------------------------------------------------------------------- /tests/unit/test_build_road.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_build_road.py -------------------------------------------------------------------------------- /tests/unit/test_cancel_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_cancel_order.py -------------------------------------------------------------------------------- /tests/unit/test_conquer_city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_conquer_city.py -------------------------------------------------------------------------------- /tests/unit/test_cultivate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_cultivate.py -------------------------------------------------------------------------------- /tests/unit/test_embark_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_embark_2.py -------------------------------------------------------------------------------- /tests/unit/test_embark_disembark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_embark_disembark.py -------------------------------------------------------------------------------- /tests/unit/test_embassy_stay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_embassy_stay.py -------------------------------------------------------------------------------- /tests/unit/test_fortify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_fortify.py -------------------------------------------------------------------------------- /tests/unit/test_fortress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_fortress.py -------------------------------------------------------------------------------- /tests/unit/test_get_action_pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_get_action_pro.py -------------------------------------------------------------------------------- /tests/unit/test_get_action_pro2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_get_action_pro2.py -------------------------------------------------------------------------------- /tests/unit/test_get_action_pro3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_get_action_pro3.py -------------------------------------------------------------------------------- /tests/unit/test_get_action_pro_spy_bribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_get_action_pro_spy_bribe.py -------------------------------------------------------------------------------- /tests/unit/test_get_action_pro_spy_steal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_get_action_pro_spy_steal.py -------------------------------------------------------------------------------- /tests/unit/test_homecity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_homecity.py -------------------------------------------------------------------------------- /tests/unit/test_hut_enter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_hut_enter.py -------------------------------------------------------------------------------- /tests/unit/test_investigate_spend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_investigate_spend.py -------------------------------------------------------------------------------- /tests/unit/test_irrigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_irrigation.py -------------------------------------------------------------------------------- /tests/unit/test_join_city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_join_city.py -------------------------------------------------------------------------------- /tests/unit/test_load_deboard_unload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_load_deboard_unload.py -------------------------------------------------------------------------------- /tests/unit/test_mine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_mine.py -------------------------------------------------------------------------------- /tests/unit/test_mine_desert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_mine_desert.py -------------------------------------------------------------------------------- /tests/unit/test_move_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_move_to.py -------------------------------------------------------------------------------- /tests/unit/test_pillage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_pillage.py -------------------------------------------------------------------------------- /tests/unit/test_plant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_plant.py -------------------------------------------------------------------------------- /tests/unit/test_pollution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_pollution.py -------------------------------------------------------------------------------- /tests/unit/test_spy_bribe_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_spy_bribe_unit.py -------------------------------------------------------------------------------- /tests/unit/test_spy_sabotage_city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_spy_sabotage_city.py -------------------------------------------------------------------------------- /tests/unit/test_spy_steal_tech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_spy_steal_tech.py -------------------------------------------------------------------------------- /tests/unit/test_trade_route_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_trade_route_market.py -------------------------------------------------------------------------------- /tests/unit/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_transform.py -------------------------------------------------------------------------------- /tests/unit/test_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigai-ai/civrealm/HEAD/tests/unit/test_upgrade.py --------------------------------------------------------------------------------