HexMapGenerator 0.3.2
dotnet add package HexMapGenerator --version 0.3.2
NuGet\Install-Package HexMapGenerator -Version 0.3.2
<PackageReference Include="HexMapGenerator" Version="0.3.2" />
<PackageVersion Include="HexMapGenerator" Version="0.3.2" />
<PackageReference Include="HexMapGenerator" />
paket add HexMapGenerator --version 0.3.2
#r "nuget: HexMapGenerator, 0.3.2"
#addin nuget:?package=HexMapGenerator&version=0.3.2
#tool nuget:?package=HexMapGenerator&version=0.3.2
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
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
Type: CONTINENTS, Size: TINY
https://github.com/Ziagl/hex-map-generator/blob/main/example_images/continents-tiny.png
Type: HIGHLAND, Size: TINY
https://github.com/Ziagl/hex-map-generator/blob/main/example_images/highland-tiny.png
Type: INLAND_SEA, Size: TINY
https://github.com/Ziagl/hex-map-generator/blob/main/example_images/inland_sea-tiny.png
Type: ISLANDS, Size: TINY
https://github.com/Ziagl/hex-map-generator/blob/main/example_images/islands-tiny.png
Type: LAKES, Size: TINY
https://github.com/Ziagl/hex-map-generator/blob/main/example_images/lakes-tiny.png
Type: SMALL_CONTINENTS, Size: TINY
https://github.com/Ziagl/hex-map-generator/blob/main/example_images/small_continents-tiny.png
Type: SUPER_CONTINENT, Size: TINY
https://github.com/Ziagl/hex-map-generator/blob/main/example_images/super_continent-tiny.png
Product | Versions 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. |
-
net8.0
- HexMapBase (>= 0.3.6)
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 | 133 | 11 days ago |
0.3.1 | 90 | 20 days ago |
0.3.0 | 114 | a month ago |
0.2.0 | 103 | 2 months ago |
0.1.14 | 110 | 3 months ago |
0.1.13 | 104 | 4 months ago |
0.1.12 | 90 | 4 months ago |
0.1.11 | 109 | 5 months ago |
0.1.9 | 112 | 6 months ago |
0.1.8 | 114 | 6 months ago |
0.1.7 | 112 | 6 months ago |
0.1.6 | 101 | 6 months ago |
0.1.5 | 112 | 6 months ago |
0.1.4 | 107 | 6 months ago |
0.1.3 | 119 | 6 months ago |
0.1.2 | 118 | 7 months ago |
0.1.1 | 101 | 7 months ago |
0.1.0 | 106 | 7 months ago |