├── .gitattributes ├── .gitignore ├── .tmuxinator.yml ├── PYCHARM.md ├── README.md ├── codelint.py ├── doc ├── .gitignore └── Doxyfile ├── minecraft_bot ├── CMakeLists.txt ├── README.md ├── __init__.py ├── launch │ └── default.launch ├── msg │ ├── __init__.py │ ├── block_data_msg.msg │ ├── chunk_bulk_msg.msg │ ├── chunk_data_msg.msg │ ├── chunk_meta_msg.msg │ ├── entity_exp_meta.msg │ ├── entity_global_meta.msg │ ├── entity_mob_meta.msg │ ├── entity_movement_meta.msg │ ├── entity_msg.msg │ ├── entity_object_meta.msg │ ├── entity_painting_meta.msg │ ├── entity_player_meta.msg │ ├── health_msg.msg │ ├── inventory_msg.msg │ ├── map_block_msg.msg │ ├── map_block_multi_msg.msg │ ├── mine_block_msg.msg │ ├── movement_msg.msg │ ├── place_block_msg.msg │ ├── position_msg.msg │ ├── slot_msg.msg │ └── vec3_msg.msg ├── package.xml ├── src │ ├── __init__.py │ ├── action_gen.py │ ├── action_schemas.py │ ├── actionsnode.py │ ├── atomspace_util.py │ ├── attention_module.py │ ├── grounded_knowledge.py │ ├── mapnode.py │ ├── mc_physics_utils.py │ ├── mc_vis_utils.py │ ├── mcdata │ │ ├── MCgenericnames.py │ │ ├── getrecipes.py │ │ ├── mc_concepts.csv │ │ ├── mc_generic_names.csv │ │ ├── mc_ids_names.csv │ │ ├── mc_materials.csv │ │ ├── mc_names.csv │ │ ├── mc_recipes.txt │ │ ├── mcidmap_blocks.py │ │ ├── mcidmap_items.py │ │ ├── minecraftdata.py │ │ └── ultimate_id_map.py │ ├── opencog_initializer.py │ ├── opencog_python_eval.conf │ ├── perception_module.py │ ├── ros_perception.py │ ├── test_actions.py │ ├── test_mc_bot.py │ ├── test_visibility.py │ └── visnode.py └── srv │ ├── __init__.py │ ├── abs_move_srv.srv │ ├── dig_srv.srv │ ├── get_block_multi_srv.srv │ ├── get_block_srv.srv │ ├── look_srv.srv │ ├── rel_move_srv.srv │ └── visible_blocks_srv.srv ├── run_oc2mc.sh ├── spockextras ├── __init__.py ├── event.py ├── inventory.py └── plugins │ ├── __init__.py │ ├── cores │ ├── NewNet.py │ └── __init__.py │ └── helpers │ ├── MapInit.py │ ├── Messenger.py │ ├── MineAndPlace.py │ ├── NewInventory.py │ ├── NewMovement.py │ ├── NewPhysics.py │ ├── Runaway.py │ ├── SendEntityData.py │ ├── SendMapData.py │ ├── SpockControl.py │ ├── __init__.py │ └── entities.py ├── troubleshooter.sh └── world ├── flatworld ├── data │ ├── Village.dat │ ├── villages.dat │ ├── villages_end.dat │ └── villages_nether.dat ├── level.dat ├── level.dat_old ├── region │ ├── r.-1.-1.mca │ ├── r.-1.0.mca │ ├── r.0.-1.mca │ └── r.0.0.mca └── session.lock └── terrainworld ├── data ├── villages.dat ├── villages_end.dat └── villages_nether.dat ├── level.dat ├── level.dat_old ├── playerdata ├── 24b9f0c2-4341-3c2e-84d0-90db8d571046.dat └── bb19ef2f-2f95-39a8-8bad-bda3ed373847.dat ├── region ├── r.-1.-1.mca ├── r.-1.0.mca ├── r.0.-1.mca └── r.0.0.mca ├── session.lock └── stats ├── 24b9f0c2-4341-3c2e-84d0-90db8d571046.json └── bb19ef2f-2f95-39a8-8bad-bda3ed373847.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/.gitignore -------------------------------------------------------------------------------- /.tmuxinator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/.tmuxinator.yml -------------------------------------------------------------------------------- /PYCHARM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/PYCHARM.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/README.md -------------------------------------------------------------------------------- /codelint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/codelint.py -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | latex/ 3 | -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /minecraft_bot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/CMakeLists.txt -------------------------------------------------------------------------------- /minecraft_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/README.md -------------------------------------------------------------------------------- /minecraft_bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/__init__.py -------------------------------------------------------------------------------- /minecraft_bot/launch/default.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/launch/default.launch -------------------------------------------------------------------------------- /minecraft_bot/msg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/__init__.py -------------------------------------------------------------------------------- /minecraft_bot/msg/block_data_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/block_data_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/chunk_bulk_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/chunk_bulk_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/chunk_data_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/chunk_data_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/chunk_meta_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/chunk_meta_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/entity_exp_meta.msg: -------------------------------------------------------------------------------- 1 | int32 count 2 | -------------------------------------------------------------------------------- /minecraft_bot/msg/entity_global_meta.msg: -------------------------------------------------------------------------------- 1 | uint8 type 2 | -------------------------------------------------------------------------------- /minecraft_bot/msg/entity_mob_meta.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/entity_mob_meta.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/entity_movement_meta.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/entity_movement_meta.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/entity_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/entity_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/entity_object_meta.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/entity_object_meta.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/entity_painting_meta.msg: -------------------------------------------------------------------------------- 1 | string title 2 | int32 dir 3 | -------------------------------------------------------------------------------- /minecraft_bot/msg/entity_player_meta.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/entity_player_meta.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/health_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/health_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/inventory_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/inventory_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/map_block_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/map_block_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/map_block_multi_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/map_block_multi_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/mine_block_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/mine_block_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/movement_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/movement_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/place_block_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/place_block_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/position_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/position_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/slot_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/slot_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/msg/vec3_msg.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/msg/vec3_msg.msg -------------------------------------------------------------------------------- /minecraft_bot/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/package.xml -------------------------------------------------------------------------------- /minecraft_bot/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/__init__.py -------------------------------------------------------------------------------- /minecraft_bot/src/action_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/action_gen.py -------------------------------------------------------------------------------- /minecraft_bot/src/action_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/action_schemas.py -------------------------------------------------------------------------------- /minecraft_bot/src/actionsnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/actionsnode.py -------------------------------------------------------------------------------- /minecraft_bot/src/atomspace_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/atomspace_util.py -------------------------------------------------------------------------------- /minecraft_bot/src/attention_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/attention_module.py -------------------------------------------------------------------------------- /minecraft_bot/src/grounded_knowledge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/grounded_knowledge.py -------------------------------------------------------------------------------- /minecraft_bot/src/mapnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mapnode.py -------------------------------------------------------------------------------- /minecraft_bot/src/mc_physics_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mc_physics_utils.py -------------------------------------------------------------------------------- /minecraft_bot/src/mc_vis_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mc_vis_utils.py -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/MCgenericnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/MCgenericnames.py -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/getrecipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/getrecipes.py -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/mc_concepts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/mc_concepts.csv -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/mc_generic_names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/mc_generic_names.csv -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/mc_ids_names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/mc_ids_names.csv -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/mc_materials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/mc_materials.csv -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/mc_names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/mc_names.csv -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/mc_recipes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/mc_recipes.txt -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/mcidmap_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/mcidmap_blocks.py -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/mcidmap_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/mcidmap_items.py -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/minecraftdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/minecraftdata.py -------------------------------------------------------------------------------- /minecraft_bot/src/mcdata/ultimate_id_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/mcdata/ultimate_id_map.py -------------------------------------------------------------------------------- /minecraft_bot/src/opencog_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/opencog_initializer.py -------------------------------------------------------------------------------- /minecraft_bot/src/opencog_python_eval.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/opencog_python_eval.conf -------------------------------------------------------------------------------- /minecraft_bot/src/perception_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/perception_module.py -------------------------------------------------------------------------------- /minecraft_bot/src/ros_perception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/ros_perception.py -------------------------------------------------------------------------------- /minecraft_bot/src/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/test_actions.py -------------------------------------------------------------------------------- /minecraft_bot/src/test_mc_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/test_mc_bot.py -------------------------------------------------------------------------------- /minecraft_bot/src/test_visibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/test_visibility.py -------------------------------------------------------------------------------- /minecraft_bot/src/visnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/src/visnode.py -------------------------------------------------------------------------------- /minecraft_bot/srv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/srv/__init__.py -------------------------------------------------------------------------------- /minecraft_bot/srv/abs_move_srv.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/srv/abs_move_srv.srv -------------------------------------------------------------------------------- /minecraft_bot/srv/dig_srv.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/srv/dig_srv.srv -------------------------------------------------------------------------------- /minecraft_bot/srv/get_block_multi_srv.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/srv/get_block_multi_srv.srv -------------------------------------------------------------------------------- /minecraft_bot/srv/get_block_srv.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/srv/get_block_srv.srv -------------------------------------------------------------------------------- /minecraft_bot/srv/look_srv.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/srv/look_srv.srv -------------------------------------------------------------------------------- /minecraft_bot/srv/rel_move_srv.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/srv/rel_move_srv.srv -------------------------------------------------------------------------------- /minecraft_bot/srv/visible_blocks_srv.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/minecraft_bot/srv/visible_blocks_srv.srv -------------------------------------------------------------------------------- /run_oc2mc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/run_oc2mc.sh -------------------------------------------------------------------------------- /spockextras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/__init__.py -------------------------------------------------------------------------------- /spockextras/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/event.py -------------------------------------------------------------------------------- /spockextras/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/inventory.py -------------------------------------------------------------------------------- /spockextras/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/__init__.py -------------------------------------------------------------------------------- /spockextras/plugins/cores/NewNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/cores/NewNet.py -------------------------------------------------------------------------------- /spockextras/plugins/cores/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/cores/__init__.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/MapInit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/MapInit.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/Messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/Messenger.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/MineAndPlace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/MineAndPlace.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/NewInventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/NewInventory.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/NewMovement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/NewMovement.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/NewPhysics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/NewPhysics.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/Runaway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/Runaway.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/SendEntityData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/SendEntityData.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/SendMapData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/SendMapData.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/SpockControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/SpockControl.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/__init__.py -------------------------------------------------------------------------------- /spockextras/plugins/helpers/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/spockextras/plugins/helpers/entities.py -------------------------------------------------------------------------------- /troubleshooter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/troubleshooter.sh -------------------------------------------------------------------------------- /world/flatworld/data/Village.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/flatworld/data/Village.dat -------------------------------------------------------------------------------- /world/flatworld/data/villages.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/flatworld/data/villages.dat -------------------------------------------------------------------------------- /world/flatworld/data/villages_end.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/flatworld/data/villages_end.dat -------------------------------------------------------------------------------- /world/flatworld/data/villages_nether.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/flatworld/data/villages_nether.dat -------------------------------------------------------------------------------- /world/flatworld/level.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/flatworld/level.dat -------------------------------------------------------------------------------- /world/flatworld/level.dat_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/flatworld/level.dat_old -------------------------------------------------------------------------------- /world/flatworld/region/r.-1.-1.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/flatworld/region/r.-1.-1.mca -------------------------------------------------------------------------------- /world/flatworld/region/r.-1.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/flatworld/region/r.-1.0.mca -------------------------------------------------------------------------------- /world/flatworld/region/r.0.-1.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/flatworld/region/r.0.-1.mca -------------------------------------------------------------------------------- /world/flatworld/region/r.0.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/flatworld/region/r.0.0.mca -------------------------------------------------------------------------------- /world/flatworld/session.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/flatworld/session.lock -------------------------------------------------------------------------------- /world/terrainworld/data/villages.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/data/villages.dat -------------------------------------------------------------------------------- /world/terrainworld/data/villages_end.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/data/villages_end.dat -------------------------------------------------------------------------------- /world/terrainworld/data/villages_nether.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/data/villages_nether.dat -------------------------------------------------------------------------------- /world/terrainworld/level.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/level.dat -------------------------------------------------------------------------------- /world/terrainworld/level.dat_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/level.dat_old -------------------------------------------------------------------------------- /world/terrainworld/playerdata/24b9f0c2-4341-3c2e-84d0-90db8d571046.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/playerdata/24b9f0c2-4341-3c2e-84d0-90db8d571046.dat -------------------------------------------------------------------------------- /world/terrainworld/playerdata/bb19ef2f-2f95-39a8-8bad-bda3ed373847.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/playerdata/bb19ef2f-2f95-39a8-8bad-bda3ed373847.dat -------------------------------------------------------------------------------- /world/terrainworld/region/r.-1.-1.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/region/r.-1.-1.mca -------------------------------------------------------------------------------- /world/terrainworld/region/r.-1.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/region/r.-1.0.mca -------------------------------------------------------------------------------- /world/terrainworld/region/r.0.-1.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/region/r.0.-1.mca -------------------------------------------------------------------------------- /world/terrainworld/region/r.0.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/region/r.0.0.mca -------------------------------------------------------------------------------- /world/terrainworld/session.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/session.lock -------------------------------------------------------------------------------- /world/terrainworld/stats/24b9f0c2-4341-3c2e-84d0-90db8d571046.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/stats/24b9f0c2-4341-3c2e-84d0-90db8d571046.json -------------------------------------------------------------------------------- /world/terrainworld/stats/bb19ef2f-2f95-39a8-8bad-bda3ed373847.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/opencog-to-minecraft/HEAD/world/terrainworld/stats/bb19ef2f-2f95-39a8-8bad-bda3ed373847.json --------------------------------------------------------------------------------