-
Notifications
You must be signed in to change notification settings - Fork 40
Exporting buildings
To start with the generation code, you will need to export buildings you created in-game. To do this, there are two export tools you can use. Before doing so, I recommend enabling "Verbose logging" under "Custom Structure Generation" on the first page of the Vanilla Framework Expanded settings. This will output useful information and warn you about missing symbols (if any) at startup.
You need to enable dev-mode to see the tools below:
- The "Export" tool. Used for square buildings (max size of 51*51). Everything in the export square will be exported.
- The "Export from area" tool. Used when you don't want to export a square (without size limitation).
After using one of the export tool, the window below will show up :
Options and what they do, in order :
-
The defName for this structure.
-
By default, power conduit are spawned under all impassable buildings and doors (only for industrial+ factions). Disable it if you want to manually place conduits.
-
Filth isn't exported by default, it can be enabled here.
-
Plants aren't exported by default, it can be enabled here.
-
Natural terrains aren't exported by default, it can be enabled here.
-
Set the exported structure as a stockpile, this is only useful if you plan on using the structure within a
SettlementDef
. -
If you want to always generate the exported roof no matter what, enable this.
-
If you want the structure to be spawned on places without a roof, this is only useful if you plan on using the structure within a
SettlementDef
. -
You can also add tags to a structure, this is only needed if you plan on using the structure within a
SettlementDef
. Simply use the input field and then press "Add tag". You then have the option to remove them.
You can now copy the structure layout, paste it in a file inside your mod Defs folder, and do the same for the symbols. It is possible that no new symbols are needed, that's because all vanilla symbols are already exported automatically.
Here is the output of exporting one of the map ruin :
<KCSG.StructureLayoutDef>
<defName>Wiki_TestExport</defName>
<layouts>
<li>
<li>.,.,ChunkMarble,.,ChunkMarble,.,.,.,.</li>
<li>.,ChunkMarble,ChunkMarble,.,.,.,.,.,.</li>
<li>.,.,.,.,.,.,.,.,.</li>
<li>.,.,.,.,.,.,.,.,.</li>
<li>.,.,.,.,.,.,.,.,.</li>
<li>.,.,.,.,.,.,.,.,.</li>
<li>.,.,.,.,.,.,.,.,.</li>
<li>.,.,.,.,.,.,.,.,.</li>
<li>.,.,.,.,.,.,.,.,.</li>
</li>
<li>
<li>Wall_BlocksLimestone,Wall_BlocksLimestone,.,Wall_BlocksLimestone,.,Wall_BlocksLimestone,Wall_BlocksLimestone,.,.</li>
<li>Wall_BlocksLimestone,.,.,Wall_BlocksLimestone,.,Plant_Dandelion,Plant_Grass,Plant_TallGrass,.</li>
<li>Wall_BlocksLimestone,.,.,Door_BlocksLimestone,.,.,.,.,Wall_BlocksLimestone</li>
<li>Wall_BlocksLimestone,Door_BlocksLimestone,Wall_BlocksLimestone,Wall_BlocksLimestone,.,Wall_BlocksLimestone,.,.,.</li>
<li>Wall_BlocksLimestone,.,.,Wall_BlocksLimestone,.,Plant_Bush,.,Plant_TallGrass,AncientFence</li>
<li>Wall_BlocksLimestone,.,.,Wall_BlocksLimestone,.,.,Plant_TreePoplar,.,.</li>
<li>Wall_BlocksLimestone,.,.,Wall_BlocksLimestone,.,Plant_Grass,.,Plant_Grass,AncientFence</li>
<li>Wall_BlocksLimestone,.,.,Door_BlocksLimestone,.,.,.,Plant_Grass,Plant_Grass</li>
<li>Wall_BlocksLimestone,Wall_BlocksLimestone,Wall_BlocksLimestone,.,AncientFence,AncientFence,.,AncientFence,.</li>
</li>
</layouts>
<roofGrid>
<li>.,.,.,.,.,.,.,.,.</li>
<li>.,.,.,.,.,.,.,.,.</li>
<li>.,.,.,.,.,.,.,.,.</li>
<li>1,1,1,1,.,.,.,.,.</li>
<li>1,1,1,1,.,.,.,.,.</li>
<li>1,1,1,1,.,.,.,.,.</li>
<li>1,1,1,1,.,.,.,.,.</li>
<li>1,1,1,1,.,.,.,.,.</li>
<li>1,1,1,1,.,.,.,.,.</li>
</roofGrid>
<terrainGrid>
<li>Concrete,Concrete,Concrete,Concrete,Concrete,Concrete,Concrete,Concrete,.</li>
<li>Concrete,.,Concrete,Concrete,.,.,.,.,.</li>
<li>Concrete,Concrete,Concrete,Concrete,Concrete,Concrete,.,Concrete,.</li>
<li>Concrete,.,Concrete,Concrete,Concrete,Concrete,.,Concrete,.</li>
<li>Concrete,Concrete,Concrete,.,Concrete,.,Concrete,.,.</li>
<li>Concrete,Concrete,Concrete,Concrete,Concrete,Concrete,.,.,.</li>
<li>Concrete,Concrete,Concrete,Concrete,.,.,Concrete,.,.</li>
<li>Concrete,Concrete,Concrete,Concrete,.,Concrete,Concrete,.,.</li>
<li>Concrete,Concrete,Concrete,Concrete,Concrete,.,Concrete,.,Concrete</li>
</terrainGrid>
<modRequirements>
<li>ludeon.rimworld.ideology</li>
</modRequirements>
</KCSG.StructureLayoutDef>
modRequirements
is added and filled automatically. Here the ancient fences require the Ideology DLC. If you want, you can remove the requirement, if the user don't have Ideology, the fences will simply be skipped. And symbols would look like this (examples from VFE Medieval):
<KCSG.SymbolDef>
<defName>VFEM_CobblestoneWall_ChunkGranite</defName>
<thing>VFEM_CobblestoneWall</thing>
<stuff>ChunkGranite</stuff>
</KCSG.SymbolDef>
<KCSG.SymbolDef>
<defName>VFEM_LowRockWall_ChunkGranite</defName>
<thing>VFEM_LowRockWall</thing>
<stuff>ChunkGranite</stuff>
</KCSG.SymbolDef>
<KCSG.SymbolDef>
<defName>VFEM_WineBarrel_North</defName>
<thing>VFEM_WineBarrel</thing>
<rotation>North</rotation>
</KCSG.SymbolDef>
- QuestNode_GetFaction
- Expandable projectiles
- Faction Def Extension
- Toggable patches
- Recipes Inheritance
- Adding new backstories
- Spawning things on new generated maps
- ThoughtExtensions
- WeatherLetterExtensions
- WeatherOverlayExtension
- WeatherEffectsExtension
- ThingDefExtension
- Stuff commonality extension
- Biome extension
- PipeSystem basics
- Resource
- Resource storage
- Resource processor
- Resource to thing
- Resource to power
- Thing to resource
- Resource trader
- Refill building with pipes
- Pipe valve
- Update to KCSG 2.0
- Exporting buildings
- Customizing symbols
- Debug helpers options
- Custom faction settlement
- Custom structure and scenarios
- Custom structure in quests
- Custom structure in WorldObjects
- Biome based structures
- Spawning world object(s) at world generation
- Prevent settlement spawning for nomadic factions
- Animal Behaviours Basics
-
Animal Behaviours Comp Classes
- Acid Attacks and Acid Immunity
- Animal Resources
- Animal Resources On Caravan
- Apply Hediff When Bound
- Asexual Reproduction
- Auto Nutrition
- Blink
- Build Periodically
- Cause Incident
- Change Def if Not Unique
- Change Weather
- Corpse Decayer
- Destroy This Item
- Die After Period
- Die And Change Into Another Def
- Dig Periodically
- Dig When Hungry
- Disease Event Immunity
- Disease Immunity
- Diseases After Period
- Doesn't flee
- Draftability
- Drop on Death
- Eat Weird Food
- Electrified
- Enrage Other Pawns
- Exploding Hatcher
- Extreme Xenophobia
- Fertilizer
- Filth Producer
- Fixed Gender
- Floating
- Gas Producer
- Give Thoughts On Caravan
- Graphic by Style
- Graphic by Terrain
- Hediff Effecter
- Hediff When Fleeing
- Highly Flammable
- Infecter
- Initial Ability
- Initial Hediff
- Initial Mental State
- Last Stand
- Light Sustenance
- Metamorphosis
- Mind Effecter
- Nearby Effecter
- No Taming Decay
- Passive Regenerator
- Pawn Overlay
- Produces no filth
- Refueling
- Regeneration
- State After Health Loss
- Summon On Spawn
- Swallow Whole
- Thought Effecter
- Untameable
- Animal Behaviours Hediff Comp Classes
- Animal Behaviours Damage Workers
- Animal Behaviours Def Extensions
- Animal Behaviours Extra Defs
- Animal Behaviours Misc