Difference between revisions of "Random name generation"
Jump to navigation
Jump to search
m |
(moved the content to separate articles) |
||
Line 1: | Line 1: | ||
There are a lot of different ways to tackle random name generation. | There are a lot of different ways to tackle random name generation. There are games, such as [[ADOM]], that simply pick a random name from a hard coded list, however, what many developers pursue is a generator that will procedurally generate an arbitrarily large number of names that will: | ||
* be pronounceable | |||
* have an adquate "feel" | |||
Many attempts have been made to write such generators, and different approaches have been used. Markov chains are one of the methods that have been used, although methods involving bigger data blocks, such as syllables or even entire words, have proven to be easier to manage. The articles listed below refer to the subject of random name generation. | |||
== | ==Related articles== | ||
Markov- | * [[Markov chains-based name generation]] | ||
* [[Markov chains name generator in Python]] | |||
* [[Finite state name generator]] | |||
* [[Syllable-based name generation]] | |||
==See also== | |||
* [http://groups.google.com/group/rec.games.roguelike.development/msg/905b2028961e4c76 (from rgrd) Phonemes based name generator] | * [http://groups.google.com/group/rec.games.roguelike.development/msg/905b2028961e4c76 (from rgrd) Phonemes based name generator] |
Revision as of 22:18, 3 January 2010
There are a lot of different ways to tackle random name generation. There are games, such as ADOM, that simply pick a random name from a hard coded list, however, what many developers pursue is a generator that will procedurally generate an arbitrarily large number of names that will:
- be pronounceable
- have an adquate "feel"
Many attempts have been made to write such generators, and different approaches have been used. Markov chains are one of the methods that have been used, although methods involving bigger data blocks, such as syllables or even entire words, have proven to be easier to manage. The articles listed below refer to the subject of random name generation.
Related articles
- Markov chains-based name generation
- Markov chains name generator in Python
- Finite state name generator
- Syllable-based name generation