Package | Description |
---|---|
squidpony |
Utilities that don't fit elsewhere in SquidLib, like text manipulation, some interfaces, and compatibility code.
|
Modifier and Type | Field and Description |
---|---|
static FakeLanguageGen |
FakeLanguageGen.ARABIC_ROMANIZED
Imitation Arabic, using mostly the Latin alphabet but with some Greek letters for tough transliteration topics.
|
static FakeLanguageGen |
FakeLanguageGen.ENGLISH
Imitation English; may seem closer to Dutch in some generated text, and is not exactly the best imitation.
|
static FakeLanguageGen |
FakeLanguageGen.FANCY_FANTASY_NAME
A mix of four different languages with some accented characters added onto an ASCII base, that can be good for
generating single words for creature or place names in fantasy settings that should have a "fancy" feeling from
having unnecessary accents added primarily for visual reasons.
|
static FakeLanguageGen |
FakeLanguageGen.FANTASY_NAME
A mix of four different languages, using only ASCII characters, that is meant for generating single words for
creature or place names in fantasy settings.
|
static FakeLanguageGen |
FakeLanguageGen.FRENCH
Imitation modern French, using (too many of) the accented vowels that are present in the language.
|
static FakeLanguageGen |
FakeLanguageGen.GREEK_AUTHENTIC
Imitation ancient Greek, using the original Greek alphabet.
|
static FakeLanguageGen |
FakeLanguageGen.GREEK_ROMANIZED
Imitation ancient Greek, romanized to use the Latin alphabet.
|
static FakeLanguageGen |
FakeLanguageGen.HINDI_IAST
Imitation Hindi, romanized to use the Latin alphabet using accented glyphs from the IAST standard, which are not
typically printable with many fonts but are more likely to seem like samples of Hindi from, say, Wikipedia.
|
static FakeLanguageGen |
FakeLanguageGen.HINDI_ROMANIZED
Imitation Hindi, romanized to use the Latin alphabet using accented glyphs similar to the IAST standard.
|
static FakeLanguageGen |
FakeLanguageGen.JAPANESE_ROMANIZED
Imitation Japanese, romanized to use the Latin alphabet.
|
FakeLanguageGen |
LanguageCipher.language
The FakeLanguageGen this will use to construct words; normally one of the static fields in FakeLanguageGen or a
FakeLanguageGen produced by using the mix() method of one of them.
|
static FakeLanguageGen |
FakeLanguageGen.LOVECRAFT
Ia! Ia! Cthulhu Rl'yeh ftaghn! Useful for generating cultist ramblings or unreadable occult texts.
|
static FakeLanguageGen |
FakeLanguageGen.RUSSIAN_AUTHENTIC
Imitation modern Russian, using the authentic Cyrillic alphabet used in Russia and other countries.
|
static FakeLanguageGen |
FakeLanguageGen.RUSSIAN_ROMANIZED
Imitation modern Russian, romanized to use the Latin alphabet.
|
static FakeLanguageGen |
FakeLanguageGen.SOMALI
Imitation Somali, using the Latin alphabet.
|
static FakeLanguageGen |
FakeLanguageGen.SWAHILI
Swahili is one of the more commonly-spoken languages in sub-Saharan Africa, and serves mainly as a shared language
that is often learned after becoming fluent in one of many other (vaguely-similar) languages of the area.
|
Modifier and Type | Method and Description |
---|---|
FakeLanguageGen |
FakeLanguageGen.addAccents(double vowelInfluence,
double consonantInfluence) |
FakeLanguageGen |
FakeLanguageGen.addModifiers(Collection<FakeLanguageGen.Modifier> mods)
Adds the specified Modifier objects from a Collection to a copy of this FakeLanguageGen and returns it.
|
FakeLanguageGen |
FakeLanguageGen.addModifiers(FakeLanguageGen.Modifier... mods)
Adds the specified Modifier objects to a copy of this FakeLanguageGen and returns it.
|
FakeLanguageGen |
FakeLanguageGen.copy() |
FakeLanguageGen |
FakeLanguageGen.mix(FakeLanguageGen other,
double otherInfluence) |
FakeLanguageGen |
FakeLanguageGen.removeAccents() |
FakeLanguageGen |
FakeLanguageGen.removeModifiers()
Creates a copy of this FakeLanguageGen with no modifiers.
|
Modifier and Type | Method and Description |
---|---|
FakeLanguageGen |
FakeLanguageGen.mix(FakeLanguageGen other,
double otherInfluence) |
Constructor and Description |
---|
LanguageCipher(FakeLanguageGen language)
Constructs a LanguageCipher that will use the given style of language generator to produce its text.
|
Copyright © 2012–2016. All rights reserved.