Added Tiled auto-tiling system + TOP-DOWN assets

- Created 4 TSX tilesets with terrain/wang set definitions
- grass_soil_autotile.tsx (terrain-based)
- fence_autotile.tsx (wang set)
- water_tileset_autotile.tsx
- grass_tileset_autotile.tsx

Documentation:
- AUTO_TILING_VODIC.md (Slovenian guide)
- TERRAIN_NOTATION_REFERENCE.md
- AUTO_TILING_CHECKLIST.md
- AUTO_TILING_SESSION_SUMMARY.md
- Updated MICRO_FARM_VODIC.md
- Updated DNEVNIK.md

Generated TOP-DOWN sprite sheets (7 packs):
- town_buildings_topdown.png
- trees_topdown_pack.png
- rocks_obstacles_topdown.png
- mine_entrances_topdown.png
- starting_camp_topdown.png
- farm_structures_topdown.png
- buildings_ruins_states.png (3 states per building)

Organized 60 Krvava Zetev sprites in krvava_zetev_sprites folder
All assets vibrant colors, NO grays, ready for Tiled!
This commit is contained in:
2025-12-19 23:58:25 +01:00
parent befbd74b69
commit 7cc66d0e2b
203 changed files with 1653 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 635 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 712 KiB

View File

@@ -0,0 +1,119 @@
<? xml version = "1.0" encoding = "UTF-8" ?>
<tileset version="1.10" tiledversion="1.11.0" name="fence_autotile" tilewidth="48" tileheight="48" tilecount="16" columns="4">
<image source="fence_autotile.png" width="192" height="192" />
<!-- FENCE AUTO-TILING using Wang Sets -->
<wangsets>
<wangset name="Fence Connections" type="edge" tile="-1">
<wangcolor name="Fence" color="#ff0000" tile="-1" probability="1" />
<!-- Row 1: Horizontal fence pieces -->
<wangtile tileid="0" wangid="0,0,1,0,1,0,0,0" />
<wangtile tileid="1" wangid="0,0,1,0,1,0,0,0" />
<wangtile tileid="2" wangid="0,0,1,0,1,0,0,0" />
<wangtile tileid="3" wangid="0,0,0,0,1,0,1,0" />
<!-- Row 2: Vertical fence pieces -->
<wangtile tileid="4" wangid="1,0,0,0,0,0,1,0" />
<wangtile tileid="5" wangid="1,0,1,0,0,0,0,0" />
<wangtile tileid="6" wangid="1,0,1,0,0,0,0,0" />
<wangtile tileid="7" wangid="0,0,0,0,0,0,1,0" />
<!-- Row 3: Corners -->
<wangtile tileid="8" wangid="1,0,0,0,0,0,0,0" />
<wangtile tileid="9" wangid="0,0,1,0,0,0,0,0" />
<wangtile tileid="10" wangid="0,0,0,0,0,0,1,0" />
<wangtile tileid="11" wangid="0,0,0,0,1,0,0,0" />
<!-- Row 4: Junctions and gate -->
<wangtile tileid="12" wangid="1,0,1,0,1,0,0,0" />
<wangtile tileid="13" wangid="1,0,1,0,1,0,1,0" />
<wangtile tileid="14" wangid="0,0,0,0,0,0,0,0" />
<wangtile tileid="15" wangid="0,0,0,0,0,0,0,0" />
</wangset>
</wangsets>
<!-- Individual tile properties -->
<tile id="0">
<properties>
<property name="type" value="fence_horizontal_left" />
</properties>
</tile>
<tile id="1">
<properties>
<property name="type" value="fence_horizontal_mid" />
</properties>
</tile>
<tile id="2">
<properties>
<property name="type" value="fence_horizontal_mid2" />
</properties>
</tile>
<tile id="3">
<properties>
<property name="type" value="fence_horizontal_right" />
</properties>
</tile>
<tile id="4">
<properties>
<property name="type" value="fence_vertical_top" />
</properties>
</tile>
<tile id="5">
<properties>
<property name="type" value="fence_vertical_mid" />
</properties>
</tile>
<tile id="6">
<properties>
<property name="type" value="fence_vertical_mid2" />
</properties>
</tile>
<tile id="7">
<properties>
<property name="type" value="fence_vertical_bottom" />
</properties>
</tile>
<tile id="8">
<properties>
<property name="type" value="fence_corner_topleft" />
</properties>
</tile>
<tile id="9">
<properties>
<property name="type" value="fence_corner_topright" />
</properties>
</tile>
<tile id="10">
<properties>
<property name="type" value="fence_corner_bottomleft" />
</properties>
</tile>
<tile id="11">
<properties>
<property name="type" value="fence_corner_bottomright" />
</properties>
</tile>
<tile id="12">
<properties>
<property name="type" value="fence_tjunction" />
</properties>
</tile>
<tile id="13">
<properties>
<property name="type" value="fence_cross" />
</properties>
</tile>
<tile id="14">
<properties>
<property name="type" value="fence_gate_closed" />
<property name="interactable" type="bool" value="true" />
</properties>
</tile>
<tile id="15">
<properties>
<property name="type" value="fence_gate_open" />
<property name="interactable" type="bool" value="true" />
</properties>
</tile>
</tileset>

Binary file not shown.

After

Width:  |  Height:  |  Size: 563 KiB

View File

@@ -0,0 +1,100 @@
<? xml version = "1.0" encoding = "UTF-8" ?>
<tileset version="1.10" tiledversion="1.11.0" name="grass_soil" tilewidth="48" tileheight="48" tilecount="16" columns="4">
<image source="grass_soil_autotile.png" width="192" height="192" />
<!-- TERRAIN DEFINITIONS for Auto-Tiling -->
<terraintypes>
<terrain name="Grass" tile="5" />
<terrain name="TilledSoil" tile="13" />
</terraintypes>
<!-- GRASS TERRAIN (Tiles 0-7) -->
<!-- Row 1: Top-Left, Top, Top-Right, Inner Top-Right Corner -->
<tile id="0" terrain=",,,0">
<properties>
<property name="type" value="grass_topleft" />
</properties>
</tile>
<tile id="1" terrain=",,0,0">
<properties>
<property name="type" value="grass_top" />
</properties>
</tile>
<tile id="2" terrain=",,0,">
<properties>
<property name="type" value="grass_topright" />
</properties>
</tile>
<tile id="3" terrain="0,0,0,">
<properties>
<property name="type" value="grass_inner_topright" />
</properties>
</tile>
<!-- Row 2: Left, Center, Right, Inner Top-Left Corner -->
<tile id="4" terrain=",0,,0">
<properties>
<property name="type" value="grass_left" />
</properties>
</tile>
<tile id="5" terrain="0,0,0,0">
<properties>
<property name="type" value="grass_center" />
</properties>
</tile>
<tile id="6" terrain="0,,,0">
<properties>
<property name="type" value="grass_right" />
</properties>
</tile>
<tile id="7" terrain="0,,0,0">
<properties>
<property name="type" value="grass_inner_topleft" />
</properties>
</tile>
<!-- TILLED SOIL TERRAIN (Tiles 8-15) -->
<!-- Row 3: Top-Left, Top, Top-Right, Inner Top-Right Corner -->
<tile id="8" terrain=",,,1">
<properties>
<property name="type" value="soil_topleft" />
</properties>
</tile>
<tile id="9" terrain=",,1,1">
<properties>
<property name="type" value="soil_top" />
</properties>
</tile>
<tile id="10" terrain=",,1,">
<properties>
<property name="type" value="soil_topright" />
</properties>
</tile>
<tile id="11" terrain="1,1,1,">
<properties>
<property name="type" value="soil_inner_topright" />
</properties>
</tile>
<!-- Row 4: Left, Center, Right, Inner Top-Left Corner -->
<tile id="12" terrain=",1,,1">
<properties>
<property name="type" value="soil_left" />
</properties>
</tile>
<tile id="13" terrain="1,1,1,1">
<properties>
<property name="type" value="soil_center" />
</properties>
</tile>
<tile id="14" terrain="1,,,1">
<properties>
<property name="type" value="soil_right" />
</properties>
</tile>
<tile id="15" terrain="1,,1,1">
<properties>
<property name="type" value="soil_inner_topleft" />
</properties>
</tile>
</tileset>

View File

@@ -0,0 +1,129 @@
<? xml version = "1.0" encoding = "UTF-8" ?>
<tileset version="1.10" tiledversion="1.11.0" name="grass" tilewidth="48" tileheight="48" tilecount="441" columns="21">
<image source="grass.png" width="1024" height="1024" />
<!-- GRASS TERRAIN - Auto-tiling definition -->
<terraintypes>
<terrain name="Grass" tile="10" />
<terrain name="Dirt Path" tile="52" />
</terraintypes>
<!-- GRASS TERRAIN (Basic 3x3 pattern) -->
<!-- Row 1 -->
<tile id="0" terrain=",,,0">
<properties>
<property name="type" value="grass_topleft" />
</properties>
</tile>
<tile id="1" terrain=",,0,0">
<properties>
<property name="type" value="grass_top" />
</properties>
</tile>
<tile id="2" terrain=",,0,">
<properties>
<property name="type" value="grass_topright" />
</properties>
</tile>
<!-- Row 2 (skipping to next row in 21-column layout) -->
<tile id="21" terrain=",0,,0">
<properties>
<property name="type" value="grass_left" />
</properties>
</tile>
<tile id="22" terrain="0,0,0,0">
<properties>
<property name="type" value="grass_center" />
</properties>
</tile>
<tile id="23" terrain="0,,,0">
<properties>
<property name="type" value="grass_right" />
</properties>
</tile>
<!-- Row 3 -->
<tile id="42" terrain=",0,,">
<properties>
<property name="type" value="grass_bottomleft" />
</properties>
</tile>
<tile id="43" terrain="0,0,,">
<properties>
<property name="type" value="grass_bottom" />
</properties>
</tile>
<tile id="44" terrain="0,,,">
<properties>
<property name="type" value="grass_bottomright" />
</properties>
</tile>
<!-- DIRT PATH TERRAIN (if exists in tileset) -->
<!-- Row 3 starting from column 10 (adjust based on actual layout) -->
<tile id="10" terrain=",,,1">
<properties>
<property name="type" value="dirt_topleft" />
</properties>
</tile>
<tile id="11" terrain=",,1,1">
<properties>
<property name="type" value="dirt_top" />
</properties>
</tile>
<tile id="12" terrain=",,1,">
<properties>
<property name="type" value="dirt_topright" />
</properties>
</tile>
<tile id="31" terrain=",1,,1">
<properties>
<property name="type" value="dirt_left" />
</properties>
</tile>
<tile id="32" terrain="1,1,1,1">
<properties>
<property name="type" value="dirt_center" />
</properties>
</tile>
<tile id="33" terrain="1,,,1">
<properties>
<property name="type" value="dirt_right" />
</properties>
</tile>
<tile id="52" terrain=",1,,">
<properties>
<property name="type" value="dirt_bottomleft" />
</properties>
</tile>
<tile id="53" terrain="1,1,,">
<properties>
<property name="type" value="dirt_bottom" />
</properties>
</tile>
<tile id="54" terrain="1,,,">
<properties>
<property name="type" value="dirt_bottomright" />
</properties>
</tile>
<!-- Add variation tiles for visual interest -->
<tile id="24">
<properties>
<property name="type" value="grass_flowers_yellow" />
</properties>
</tile>
<tile id="25">
<properties>
<property name="type" value="grass_flowers_pink" />
</properties>
</tile>
<tile id="26">
<properties>
<property name="type" value="grass_flowers_white" />
</properties>
</tile>
</tileset>

View File

@@ -0,0 +1,85 @@
<? xml version = "1.0" encoding = "UTF-8" ?>
<tileset version="1.10" tiledversion="1.11.0" name="water" tilewidth="48" tileheight="48" tilecount="441" columns="21">
<image source="water.png" width="1024" height="1024" />
<!-- WATER TERRAIN - Auto-tiling definition -->
<!-- Assuming 3x3 corner pattern starts at tile 0 -->
<terraintypes>
<terrain name="Water" tile="10" />
</terraintypes>
<!-- Standard 3x3 Water Pattern (adjust IDs based on actual layout) -->
<!-- Row 1 -->
<tile id="0" terrain=",,,0">
<properties>
<property name="type" value="water_topleft" />
</properties>
</tile>
<tile id="1" terrain=",,0,0">
<properties>
<property name="type" value="water_top" />
</properties>
</tile>
<tile id="2" terrain=",,0,">
<properties>
<property name="type" value="water_topright" />
</properties>
</tile>
<!-- Row 2 -->
<tile id="21" terrain=",0,,0">
<properties>
<property name="type" value="water_left" />
</properties>
</tile>
<tile id="22" terrain="0,0,0,0">
<properties>
<property name="type" value="water_center" />
<property name="animated" type="bool" value="true" />
</properties>
</tile>
<tile id="23" terrain="0,,,0">
<properties>
<property name="type" value="water_right" />
</properties>
</tile>
<!-- Row 3 -->
<tile id="42" terrain=",0,,">
<properties>
<property name="type" value="water_bottomleft" />
</properties>
</tile>
<tile id="43" terrain="0,0,,">
<properties>
<property name="type" value="water_bottom" />
</properties>
</tile>
<tile id="44" terrain="0,,,">
<properties>
<property name="type" value="water_bottomright" />
</properties>
</tile>
<!-- Inner Corners (for complex shapes) -->
<tile id="3" terrain="0,0,0,">
<properties>
<property name="type" value="water_inner_topright" />
</properties>
</tile>
<tile id="24" terrain="0,,0,0">
<properties>
<property name="type" value="water_inner_topleft" />
</properties>
</tile>
<tile id="45" terrain="0,0,,0">
<properties>
<property name="type" value="water_inner_bottomright" />
</properties>
</tile>
<tile id="20" terrain=",0,0,0">
<properties>
<property name="type" value="water_inner_bottomleft" />
</properties>
</tile>
</tileset>