HexMapGenerator 0.3.2

dotnet add package HexMapGenerator --version 0.3.2
                    
NuGet\Install-Package HexMapGenerator -Version 0.3.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="HexMapGenerator" Version="0.3.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="HexMapGenerator" Version="0.3.2" />
                    
Directory.Packages.props
<PackageReference Include="HexMapGenerator" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add HexMapGenerator --version 0.3.2
                    
#r "nuget: HexMapGenerator, 0.3.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=HexMapGenerator&version=0.3.2
                    
Install HexMapGenerator as a Cake Addin
#tool nuget:?package=HexMapGenerator&version=0.3.2
                    
Install HexMapGenerator as a Cake Tool

hex-map-generator

A hexagon map generator for Tiled Map Editor (https://www.mapeditor.org/) files.

Sample of generated maps inside Tiled Map Editor:

Type: CONTINENTS_ISLANDS, Size: TINY https://github.com/Ziagl/hex-map-generator/blob/main/example_images/continents_islands-tiny.png alternate text is missing from this package README image

Sample code to create map

using HexMapGenerator;
using HexMapGenerator.enums;

// generator values
var mapSize = MapSize.SMALL;
var mapType = MapType.HIGHLAND;
var mapTemperature = MapTemperature.NORMAL;
var mapHumidity = MapHumidity.NORMAL;
float factorRiver = 0.0f;

// converter values
string imagefile = "tileset.png";
int tileWidth = 32;
int tileHeight = 34;
int imageWidth = 1536;
int imageHeight = tileHeight;
int tileCount = imageWidth / tileWidth;
int tileColumns = tileCount;
string transparentColor = "#ffffff";

Console.WriteLine("Generating new map");

var generator = new Generator();
generator.GenerateMap(mapType, mapSize, mapTemperature, mapHumidity, factorRiver);

Console.WriteLine(generator.Print());

var converter = new Converter();
string json = converter.GenerateTiledJson(generator.MapData, imagefile, tileWidth, tileHeight, imageWidth, imageHeight, tileCount, tileColumns, transparentColor);
Console.WriteLine("Json:" + json);
File.WriteAllText("mapData.json", json);

All possible map types as example images:

Type: ARCHIPELAGO, Size: TINY https://github.com/Ziagl/hex-map-generator/blob/main/example_images/archipelago-tiny.png alternate text is missing from this package README image

Type: CONTINENTS, Size: TINY https://github.com/Ziagl/hex-map-generator/blob/main/example_images/continents-tiny.png alternate text is missing from this package README image

Type: HIGHLAND, Size: TINY https://github.com/Ziagl/hex-map-generator/blob/main/example_images/highland-tiny.png alternate text is missing from this package README image

Type: INLAND_SEA, Size: TINY https://github.com/Ziagl/hex-map-generator/blob/main/example_images/inland_sea-tiny.png alternate text is missing from this package README image

Type: ISLANDS, Size: TINY https://github.com/Ziagl/hex-map-generator/blob/main/example_images/islands-tiny.png alternate text is missing from this package README image

Type: LAKES, Size: TINY https://github.com/Ziagl/hex-map-generator/blob/main/example_images/lakes-tiny.png alternate text is missing from this package README image

Type: SMALL_CONTINENTS, Size: TINY https://github.com/Ziagl/hex-map-generator/blob/main/example_images/small_continents-tiny.png alternate text is missing from this package README image

Type: SUPER_CONTINENT, Size: TINY https://github.com/Ziagl/hex-map-generator/blob/main/example_images/super_continent-tiny.png alternate text is missing from this package README image

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.3.2 127 3/30/2025
0.3.1 86 3/21/2025
0.3.0 112 3/14/2025
0.2.0 101 2/20/2025
0.1.14 108 1/2/2025
0.1.13 102 12/19/2024
0.1.12 88 12/18/2024
0.1.11 107 11/22/2024
0.1.9 112 10/15/2024
0.1.8 114 10/11/2024
0.1.7 111 10/11/2024
0.1.6 100 10/10/2024
0.1.5 111 10/10/2024
0.1.4 106 10/10/2024
0.1.3 119 9/26/2024
0.1.2 118 9/24/2024
0.1.1 101 9/24/2024
0.1.0 106 9/24/2024