jnickg / dungen-core

.NET Core implementation of DunGen
GNU General Public License v2.0
0 stars 0 forks source link

Add "Random Dungeon" component to web frontend / homepage #41

Closed jnickg closed 3 years ago

jnickg commented 3 years ago

Overview

Fixes #38. Gets us closer to #34.

This PR merges changes to dungen-site to add a random-dungeon generating component. This creates a 25x25 (default) dungeon, renders it to a bitmap, and serializes it across the wire, for the client to embed into the web page.

The RandomDungeonController includes a hard-coded set of algorithms, to ensure what it generates is at least moderately interesting.

Considerations & Notes