Difference between revisions of "Random name generation"

From RogueBasin
Jump to navigation Jump to search
(→‎See also: added some links to articles from Roguelike News)
(Remove dead links)
 
(4 intermediate revisions by 4 users not shown)
Line 11: Line 11:
* [[Syllable-based name generation]]
* [[Syllable-based name generation]]
* [[Cluster chaining name generator]]
* [[Cluster chaining name generator]]
* [[Names from a high order Markov Process and a simplified Katz back-off scheme]]


==See also==
==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]
* [http://www.seventhsanctum.com/library.php (www.seventhsanctum.com) Word based random generators, code and advice]
* [https://github.com/Tw1ddle/MarkovNameGenerator Markov Process name generator] based on [http://www.roguebasin.com/index.php?title=Names_from_a_high_order_Markov_Process_and_a_simplified_Katz_back-off_scheme Jeff Lund's article]
* [http://www.seventhsanctum.com/writings.php?Writnum=2 (www.seventhsanctum.com) Sleight of Mind: Why do generators work]
* [http://mistermishap.com/rlnews/dev00038.html Random names]
* [http://mistermishap.com/rlnews/dev00040.html Random Name Generation Using Regular Expressions]
[[Category:Articles]]
[[Category:Articles]]

Latest revision as of 21:41, 20 November 2015

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 adequate "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

See also