├── .codedocs ├── .doxygen ├── .editorconfig ├── .gitignore ├── Character.cpp ├── Character.hpp ├── CharacterManager.cpp ├── Character_Attribute.cpp ├── Character_Bloodline.cpp ├── Character_Knowledge.cpp ├── Character_Knowledge.hpp ├── Character_Skill.cpp ├── Civ.cpp ├── Civ.hpp ├── Civ_Dwarven.cpp ├── Civ_Dwarven.hpp ├── CompileCount.hpp ├── Creature.cpp ├── Creature.hpp ├── Creature_All.cpp ├── Creature_All.hpp ├── Creature_Attack.hpp ├── Creature_Deer.cpp ├── Creature_Deer.hpp ├── Creature_Generator.cpp ├── Creature_Generator.hpp ├── Creature_Knowledge.cpp ├── Creature_Knowledge.hpp ├── Creature_Manager.cpp ├── Creature_Manager.hpp ├── Creature_Species.cpp ├── Creature_Species.hpp ├── Driver.cpp ├── Driver_GLHooks.hpp ├── Driver_GlobalObjects.hpp ├── Driver_GlobalSettings.cpp ├── Driver_Init.hpp ├── Driver_LoadTextures.hpp ├── Driver_QuitChecker.hpp ├── Driver_Settings.cpp ├── Driver_Settings_Enums.hpp ├── Driver_Settings_WordLists.cpp ├── Driver_TextureList.hpp ├── Government.cpp ├── Government.hpp ├── Government_Position.hpp ├── HasMoney.cpp ├── Idea.cpp ├── Idea.hpp ├── Ingredient.hpp ├── Item.cpp ├── Item.hpp ├── ItemFactory.cpp ├── ItemFactory.hpp ├── ItemRequest.cpp ├── Item_All.cpp ├── Item_Attributes.cpp ├── Item_Attributes.hpp ├── Item_Information.cpp ├── Job.cpp ├── Job.hpp ├── LocalTile.cpp ├── LocalTile.hpp ├── Location.cpp ├── Location.hpp ├── LocationRequest.cpp ├── Menu_AdventureMode.hpp ├── Menu_Biome.hpp ├── Menu_Biome_Details.hpp ├── Menu_Character.hpp ├── Menu_CharacterDetails.cpp ├── Menu_CivDetails.hpp ├── Menu_Civs.hpp ├── Menu_Creatures.hpp ├── Menu_EventDetails.hpp ├── Menu_Events.cpp ├── Menu_Flora.hpp ├── Menu_FloraDetails.hpp ├── Menu_Items.cpp ├── Menu_LoadGame.hpp ├── Menu_Mythology.cpp ├── Menu_MythologyDetails.cpp ├── Menu_Options.hpp ├── Menu_Races.cpp ├── Menu_SettlementDetails.cpp ├── Menu_Settlement_Stockpile.cpp ├── Menu_Settlements.hpp ├── Menu_SpeciesDetails.hpp ├── Menu_Title.hpp ├── Menu_TribeDetails.cpp ├── Menu_Tribes.hpp ├── Menu_World.hpp ├── Menu_WorldGenerator.hpp ├── Menu_WorldSimulator.hpp ├── Mythology.cpp ├── Mythology.hpp ├── Mythology_Deity.cpp ├── Mythology_Deity.hpp ├── NomadicTribe.cpp ├── NomadicTribe.hpp ├── Pathing.cpp ├── Pathing.hpp ├── README.md ├── Recipe.cpp ├── Recipe.hpp ├── RenderManager.hpp ├── ResourceRequest.cpp ├── Settlement.cpp ├── Settlement.hpp ├── Settlement_Dwarven.cpp ├── Settlement_Dwarven.hpp ├── Social.cpp ├── Social.hpp ├── Static.hpp ├── Static_Flora.cpp ├── Static_Flora.hpp ├── Static_FloraGenerator.cpp ├── Static_FloraGenerator.hpp ├── Static_FloraManager.cpp ├── Static_FloraManager.hpp ├── Stockpile.cpp ├── Stockpile.hpp ├── Technology.cpp ├── Technology.hpp ├── TextureInterface.cpp ├── TextureManager.hpp ├── TileViewer.hpp ├── Tribe.cpp ├── Tribe.hpp ├── Tribe_Dwarven.cpp ├── Tribe_Dwarven.hpp ├── Tribe_Elf.cpp ├── Tribe_Elf.hpp ├── Tribe_Human.cpp ├── Tribe_Human.hpp ├── World.cpp ├── World.hpp ├── WorldObject.cpp ├── WorldObject.hpp ├── WorldObjectGlobal.cpp ├── WorldObjectGlobal.hpp ├── WorldObjectGlobal_TribalArtifact.cpp ├── WorldObjectGlobal_TribalArtifact.hpp ├── WorldObject_Flora.cpp ├── WorldObject_Flora.hpp ├── WorldObject_Rock.cpp ├── WorldObject_Rock.hpp ├── WorldObject_Sign.cpp ├── WorldObject_Sign.hpp ├── WorldObject_Tree.cpp ├── WorldObject_Tree.hpp ├── World_Astronomy.hpp ├── World_Biome.cpp ├── World_Biome.hpp ├── World_Event.hpp ├── World_Events.cpp ├── World_Landmass.hpp ├── World_Local.cpp ├── World_Local.hpp ├── World_MapManager.cpp ├── World_MapManager.hpp ├── World_Viewer.hpp ├── World_Viewer_Minimap.hpp ├── World_Viewer_Rain_Manager.cpp ├── World_Viewer_Rain_Manager.hpp ├── _config.yml ├── doc ├── 03-09-2018-Earthc.png ├── 2018-06-26-Example01.png ├── 2018-06-26-Example02.png ├── 2018-06-26-Example03.png ├── 2018-06-26-Example04.png ├── 2018-06-26-Example05.png ├── 2018-06-26-Example06.png ├── 2018-07-03-Example07.png ├── 2018-07-03-Example08.png ├── 2018-07-13-HMMc.png ├── 2018-07-16-TribalConflict.png ├── 2018-07-17-SpicyTilesetc.png ├── 2018-07-26-LocalMap.png └── HMM2.gif └── raw ├── colours.wtf ├── creatures.wtf ├── ini.wtf ├── textures.wtf └── wordlists ├── flora_adjectives.txt ├── flora_colours.txt ├── flora_nouns.txt └── flora_patterns.txt /.codedocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/.codedocs -------------------------------------------------------------------------------- /.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/.doxygen -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/.gitignore -------------------------------------------------------------------------------- /Character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Character.cpp -------------------------------------------------------------------------------- /Character.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Character.hpp -------------------------------------------------------------------------------- /CharacterManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/CharacterManager.cpp -------------------------------------------------------------------------------- /Character_Attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Character_Attribute.cpp -------------------------------------------------------------------------------- /Character_Bloodline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Character_Bloodline.cpp -------------------------------------------------------------------------------- /Character_Knowledge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Character_Knowledge.cpp -------------------------------------------------------------------------------- /Character_Knowledge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Character_Knowledge.hpp -------------------------------------------------------------------------------- /Character_Skill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Character_Skill.cpp -------------------------------------------------------------------------------- /Civ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Civ.cpp -------------------------------------------------------------------------------- /Civ.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Civ.hpp -------------------------------------------------------------------------------- /Civ_Dwarven.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Civ_Dwarven.cpp -------------------------------------------------------------------------------- /Civ_Dwarven.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Civ_Dwarven.hpp -------------------------------------------------------------------------------- /CompileCount.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/CompileCount.hpp -------------------------------------------------------------------------------- /Creature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature.cpp -------------------------------------------------------------------------------- /Creature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature.hpp -------------------------------------------------------------------------------- /Creature_All.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_All.cpp -------------------------------------------------------------------------------- /Creature_All.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_All.hpp -------------------------------------------------------------------------------- /Creature_Attack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_Attack.hpp -------------------------------------------------------------------------------- /Creature_Deer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_Deer.cpp -------------------------------------------------------------------------------- /Creature_Deer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_Deer.hpp -------------------------------------------------------------------------------- /Creature_Generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_Generator.cpp -------------------------------------------------------------------------------- /Creature_Generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_Generator.hpp -------------------------------------------------------------------------------- /Creature_Knowledge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_Knowledge.cpp -------------------------------------------------------------------------------- /Creature_Knowledge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_Knowledge.hpp -------------------------------------------------------------------------------- /Creature_Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_Manager.cpp -------------------------------------------------------------------------------- /Creature_Manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_Manager.hpp -------------------------------------------------------------------------------- /Creature_Species.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_Species.cpp -------------------------------------------------------------------------------- /Creature_Species.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Creature_Species.hpp -------------------------------------------------------------------------------- /Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Driver.cpp -------------------------------------------------------------------------------- /Driver_GLHooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Driver_GLHooks.hpp -------------------------------------------------------------------------------- /Driver_GlobalObjects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Driver_GlobalObjects.hpp -------------------------------------------------------------------------------- /Driver_GlobalSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Driver_GlobalSettings.cpp -------------------------------------------------------------------------------- /Driver_Init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Driver_Init.hpp -------------------------------------------------------------------------------- /Driver_LoadTextures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Driver_LoadTextures.hpp -------------------------------------------------------------------------------- /Driver_QuitChecker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Driver_QuitChecker.hpp -------------------------------------------------------------------------------- /Driver_Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Driver_Settings.cpp -------------------------------------------------------------------------------- /Driver_Settings_Enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Driver_Settings_Enums.hpp -------------------------------------------------------------------------------- /Driver_Settings_WordLists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Driver_Settings_WordLists.cpp -------------------------------------------------------------------------------- /Driver_TextureList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Driver_TextureList.hpp -------------------------------------------------------------------------------- /Government.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Government.cpp -------------------------------------------------------------------------------- /Government.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Government.hpp -------------------------------------------------------------------------------- /Government_Position.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Government_Position.hpp -------------------------------------------------------------------------------- /HasMoney.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/HasMoney.cpp -------------------------------------------------------------------------------- /Idea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Idea.cpp -------------------------------------------------------------------------------- /Idea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Idea.hpp -------------------------------------------------------------------------------- /Ingredient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Ingredient.hpp -------------------------------------------------------------------------------- /Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Item.cpp -------------------------------------------------------------------------------- /Item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Item.hpp -------------------------------------------------------------------------------- /ItemFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/ItemFactory.cpp -------------------------------------------------------------------------------- /ItemFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/ItemFactory.hpp -------------------------------------------------------------------------------- /ItemRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/ItemRequest.cpp -------------------------------------------------------------------------------- /Item_All.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Item_All.cpp -------------------------------------------------------------------------------- /Item_Attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Item_Attributes.cpp -------------------------------------------------------------------------------- /Item_Attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Item_Attributes.hpp -------------------------------------------------------------------------------- /Item_Information.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Item_Information.cpp -------------------------------------------------------------------------------- /Job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Job.cpp -------------------------------------------------------------------------------- /Job.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Job.hpp -------------------------------------------------------------------------------- /LocalTile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/LocalTile.cpp -------------------------------------------------------------------------------- /LocalTile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/LocalTile.hpp -------------------------------------------------------------------------------- /Location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Location.cpp -------------------------------------------------------------------------------- /Location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Location.hpp -------------------------------------------------------------------------------- /LocationRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/LocationRequest.cpp -------------------------------------------------------------------------------- /Menu_AdventureMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_AdventureMode.hpp -------------------------------------------------------------------------------- /Menu_Biome.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Biome.hpp -------------------------------------------------------------------------------- /Menu_Biome_Details.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Biome_Details.hpp -------------------------------------------------------------------------------- /Menu_Character.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Character.hpp -------------------------------------------------------------------------------- /Menu_CharacterDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_CharacterDetails.cpp -------------------------------------------------------------------------------- /Menu_CivDetails.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_CivDetails.hpp -------------------------------------------------------------------------------- /Menu_Civs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Civs.hpp -------------------------------------------------------------------------------- /Menu_Creatures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Creatures.hpp -------------------------------------------------------------------------------- /Menu_EventDetails.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_EventDetails.hpp -------------------------------------------------------------------------------- /Menu_Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Events.cpp -------------------------------------------------------------------------------- /Menu_Flora.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Flora.hpp -------------------------------------------------------------------------------- /Menu_FloraDetails.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_FloraDetails.hpp -------------------------------------------------------------------------------- /Menu_Items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Items.cpp -------------------------------------------------------------------------------- /Menu_LoadGame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_LoadGame.hpp -------------------------------------------------------------------------------- /Menu_Mythology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Mythology.cpp -------------------------------------------------------------------------------- /Menu_MythologyDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_MythologyDetails.cpp -------------------------------------------------------------------------------- /Menu_Options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Options.hpp -------------------------------------------------------------------------------- /Menu_Races.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Races.cpp -------------------------------------------------------------------------------- /Menu_SettlementDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_SettlementDetails.cpp -------------------------------------------------------------------------------- /Menu_Settlement_Stockpile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Settlement_Stockpile.cpp -------------------------------------------------------------------------------- /Menu_Settlements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Settlements.hpp -------------------------------------------------------------------------------- /Menu_SpeciesDetails.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_SpeciesDetails.hpp -------------------------------------------------------------------------------- /Menu_Title.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Title.hpp -------------------------------------------------------------------------------- /Menu_TribeDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_TribeDetails.cpp -------------------------------------------------------------------------------- /Menu_Tribes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_Tribes.hpp -------------------------------------------------------------------------------- /Menu_World.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_World.hpp -------------------------------------------------------------------------------- /Menu_WorldGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_WorldGenerator.hpp -------------------------------------------------------------------------------- /Menu_WorldSimulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Menu_WorldSimulator.hpp -------------------------------------------------------------------------------- /Mythology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Mythology.cpp -------------------------------------------------------------------------------- /Mythology.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Mythology.hpp -------------------------------------------------------------------------------- /Mythology_Deity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Mythology_Deity.cpp -------------------------------------------------------------------------------- /Mythology_Deity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Mythology_Deity.hpp -------------------------------------------------------------------------------- /NomadicTribe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/NomadicTribe.cpp -------------------------------------------------------------------------------- /NomadicTribe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/NomadicTribe.hpp -------------------------------------------------------------------------------- /Pathing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Pathing.cpp -------------------------------------------------------------------------------- /Pathing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Pathing.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/README.md -------------------------------------------------------------------------------- /Recipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Recipe.cpp -------------------------------------------------------------------------------- /Recipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Recipe.hpp -------------------------------------------------------------------------------- /RenderManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/RenderManager.hpp -------------------------------------------------------------------------------- /ResourceRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/ResourceRequest.cpp -------------------------------------------------------------------------------- /Settlement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Settlement.cpp -------------------------------------------------------------------------------- /Settlement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Settlement.hpp -------------------------------------------------------------------------------- /Settlement_Dwarven.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Settlement_Dwarven.cpp -------------------------------------------------------------------------------- /Settlement_Dwarven.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Settlement_Dwarven.hpp -------------------------------------------------------------------------------- /Social.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Social.cpp -------------------------------------------------------------------------------- /Social.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Social.hpp -------------------------------------------------------------------------------- /Static.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Static.hpp -------------------------------------------------------------------------------- /Static_Flora.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Static_Flora.cpp -------------------------------------------------------------------------------- /Static_Flora.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Static_Flora.hpp -------------------------------------------------------------------------------- /Static_FloraGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Static_FloraGenerator.cpp -------------------------------------------------------------------------------- /Static_FloraGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Static_FloraGenerator.hpp -------------------------------------------------------------------------------- /Static_FloraManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Static_FloraManager.cpp -------------------------------------------------------------------------------- /Static_FloraManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Static_FloraManager.hpp -------------------------------------------------------------------------------- /Stockpile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Stockpile.cpp -------------------------------------------------------------------------------- /Stockpile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Stockpile.hpp -------------------------------------------------------------------------------- /Technology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Technology.cpp -------------------------------------------------------------------------------- /Technology.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Technology.hpp -------------------------------------------------------------------------------- /TextureInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/TextureInterface.cpp -------------------------------------------------------------------------------- /TextureManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/TextureManager.hpp -------------------------------------------------------------------------------- /TileViewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/TileViewer.hpp -------------------------------------------------------------------------------- /Tribe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Tribe.cpp -------------------------------------------------------------------------------- /Tribe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Tribe.hpp -------------------------------------------------------------------------------- /Tribe_Dwarven.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Tribe_Dwarven.cpp -------------------------------------------------------------------------------- /Tribe_Dwarven.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Tribe_Dwarven.hpp -------------------------------------------------------------------------------- /Tribe_Elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Tribe_Elf.cpp -------------------------------------------------------------------------------- /Tribe_Elf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Tribe_Elf.hpp -------------------------------------------------------------------------------- /Tribe_Human.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Tribe_Human.cpp -------------------------------------------------------------------------------- /Tribe_Human.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/Tribe_Human.hpp -------------------------------------------------------------------------------- /World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World.cpp -------------------------------------------------------------------------------- /World.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World.hpp -------------------------------------------------------------------------------- /WorldObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObject.cpp -------------------------------------------------------------------------------- /WorldObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObject.hpp -------------------------------------------------------------------------------- /WorldObjectGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObjectGlobal.cpp -------------------------------------------------------------------------------- /WorldObjectGlobal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObjectGlobal.hpp -------------------------------------------------------------------------------- /WorldObjectGlobal_TribalArtifact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObjectGlobal_TribalArtifact.cpp -------------------------------------------------------------------------------- /WorldObjectGlobal_TribalArtifact.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObjectGlobal_TribalArtifact.hpp -------------------------------------------------------------------------------- /WorldObject_Flora.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObject_Flora.cpp -------------------------------------------------------------------------------- /WorldObject_Flora.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObject_Flora.hpp -------------------------------------------------------------------------------- /WorldObject_Rock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObject_Rock.cpp -------------------------------------------------------------------------------- /WorldObject_Rock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObject_Rock.hpp -------------------------------------------------------------------------------- /WorldObject_Sign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObject_Sign.cpp -------------------------------------------------------------------------------- /WorldObject_Sign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObject_Sign.hpp -------------------------------------------------------------------------------- /WorldObject_Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObject_Tree.cpp -------------------------------------------------------------------------------- /WorldObject_Tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/WorldObject_Tree.hpp -------------------------------------------------------------------------------- /World_Astronomy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Astronomy.hpp -------------------------------------------------------------------------------- /World_Biome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Biome.cpp -------------------------------------------------------------------------------- /World_Biome.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Biome.hpp -------------------------------------------------------------------------------- /World_Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Event.hpp -------------------------------------------------------------------------------- /World_Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Events.cpp -------------------------------------------------------------------------------- /World_Landmass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Landmass.hpp -------------------------------------------------------------------------------- /World_Local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Local.cpp -------------------------------------------------------------------------------- /World_Local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Local.hpp -------------------------------------------------------------------------------- /World_MapManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_MapManager.cpp -------------------------------------------------------------------------------- /World_MapManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_MapManager.hpp -------------------------------------------------------------------------------- /World_Viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Viewer.hpp -------------------------------------------------------------------------------- /World_Viewer_Minimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Viewer_Minimap.hpp -------------------------------------------------------------------------------- /World_Viewer_Rain_Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Viewer_Rain_Manager.cpp -------------------------------------------------------------------------------- /World_Viewer_Rain_Manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/World_Viewer_Rain_Manager.hpp -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/_config.yml -------------------------------------------------------------------------------- /doc/03-09-2018-Earthc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/03-09-2018-Earthc.png -------------------------------------------------------------------------------- /doc/2018-06-26-Example01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-06-26-Example01.png -------------------------------------------------------------------------------- /doc/2018-06-26-Example02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-06-26-Example02.png -------------------------------------------------------------------------------- /doc/2018-06-26-Example03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-06-26-Example03.png -------------------------------------------------------------------------------- /doc/2018-06-26-Example04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-06-26-Example04.png -------------------------------------------------------------------------------- /doc/2018-06-26-Example05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-06-26-Example05.png -------------------------------------------------------------------------------- /doc/2018-06-26-Example06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-06-26-Example06.png -------------------------------------------------------------------------------- /doc/2018-07-03-Example07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-07-03-Example07.png -------------------------------------------------------------------------------- /doc/2018-07-03-Example08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-07-03-Example08.png -------------------------------------------------------------------------------- /doc/2018-07-13-HMMc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-07-13-HMMc.png -------------------------------------------------------------------------------- /doc/2018-07-16-TribalConflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-07-16-TribalConflict.png -------------------------------------------------------------------------------- /doc/2018-07-17-SpicyTilesetc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-07-17-SpicyTilesetc.png -------------------------------------------------------------------------------- /doc/2018-07-26-LocalMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/2018-07-26-LocalMap.png -------------------------------------------------------------------------------- /doc/HMM2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/doc/HMM2.gif -------------------------------------------------------------------------------- /raw/colours.wtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/raw/colours.wtf -------------------------------------------------------------------------------- /raw/creatures.wtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/raw/creatures.wtf -------------------------------------------------------------------------------- /raw/ini.wtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/raw/ini.wtf -------------------------------------------------------------------------------- /raw/textures.wtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/raw/textures.wtf -------------------------------------------------------------------------------- /raw/wordlists/flora_adjectives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/raw/wordlists/flora_adjectives.txt -------------------------------------------------------------------------------- /raw/wordlists/flora_colours.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/raw/wordlists/flora_colours.txt -------------------------------------------------------------------------------- /raw/wordlists/flora_nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/raw/wordlists/flora_nouns.txt -------------------------------------------------------------------------------- /raw/wordlists/flora_patterns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanBabij/WorldSim/HEAD/raw/wordlists/flora_patterns.txt --------------------------------------------------------------------------------