evennia.contrib.rplanguage¶
Language and whisper obfuscation system
Evennia contrib - Griatch 2015
This module is intented to be used with an emoting system (such as contrib/rpsystem.py). It offers the ability to obfuscate spoken words in the game in various ways:
- Language: The language functionality defines a pseudo-language map
to any number of languages. The string will be obfuscated depending on a scaling that (most likely) will be input as a weighted average of the language skill of the speaker and listener.
- Whisper: The whisper functionality will gradually “fade out” a
whisper along as scale 0-1, where the fading is based on gradually removing sections of the whisper that is (supposedly) easier to overhear (for example “s” sounds tend to be audible even when no other meaning can be determined).
Usage:
from evennia.contrib import rplanguage # need to be done once, here we create the "default" lang rplanguage.add_language() say = "This is me talking." whisper = "This is me whispering. print rplanguage.obfuscate_language(say, level=0.0) <<< "This is me talking." print rplanguage.obfuscate_language(say, level=0.5) <<< "This is me byngyry." print rplanguage.obfuscate_language(say, level=1.0) <<< "Daly ly sy byngyry." result = rplanguage.obfuscate_whisper(whisper, level=0.0) <<< "This is me whispering" result = rplanguage.obfuscate_whisper(whisper, level=0.2) <<< "This is m- whisp-ring" result = rplanguage.obfuscate_whisper(whisper, level=0.5) <<< "---s -s -- ---s------" result = rplanguage.obfuscate_whisper(whisper, level=0.7) <<< "---- -- -- ----------" result = rplanguage.obfuscate_whisper(whisper, level=1.0) <<< "..."To set up new languages, import and use the add_language() helper method in this module. This allows you to customize the “feel” of the semi-random language you are creating. Especially the word_length_variance helps vary the length of translated words compared to the original and can help change the “feel” for the language you are creating. You can also add your own dictionary and “fix” random words for a list of input words.
Below is an example of “elvish”, using “rounder” vowels and sounds:
phonemes = "oi oh ee ae aa eh ah ao aw ay er ey ow ia ih iy " "oy ua uh uw y p b t d f v t dh s z sh zh ch jh k " "ng g m n l r w", vowels = "eaoiuy" grammar = "v vv vvc vcc vvcc cvvc vccv vvccv vcvccv vcvcvcc vvccvvcc " "vcvvccvvc cvcvvcvvcc vcvcvvccvcvv", word_length_variance = 1 noun_postfix = "'la" manual_translations = {"the":"y'e", "we":"uyi", "she":"semi", "he":"emi", "you": "do", 'me':'mi','i':'me', 'be':"hy'e", 'and':'y'} rplanguage.add_language(key="elvish", phonemes=phonemes, grammar=grammar, word_length_variance=word_length_variance, noun_postfix=noun_postfix, vowels=vowels, manual_translations=manual_translations auto_translations="my_word_file.txt")This will produce a decicively more “rounded” and “soft” language than the default one. The few manual_translations also make sure to make it at least look superficially “reasonable”.
The auto_translations keyword is useful, this accepts either a list or a path to a file of words (one per line) to automatically create fixed translations for according to the grammatical rules. This allows to quickly build a large corpus of translated words that never change (if this is desired).
-
class
evennia.contrib.rplanguage.
LanguageHandler
(*args, **kwargs)[source]¶ Bases:
evennia.scripts.scripts.DefaultScript
This is a storage class that should usually not be created on its own. It’s automatically created by a call to obfuscate_language or add_language below.
Languages are implemented as a “logical” pseudo- consistent language algorith here. The idea is that a language is built up from phonemes. These are joined together according to a “grammar” of possible phoneme- combinations and allowed characters. It may sound simplistic, but this allows to easily make “similar-sounding” languages. One can also custom-define a dictionary of some common words to give further consistency. Optionally, the system also allows an input list of common words to be loaded and given random translations. These will be stored to disk and will thus not change. This gives a decent “stability” of the language but if the goal is to obfuscate, this may allow players to eventually learn to understand the gist of a sentence even if their characters can not. Any number of languages can be created this way.
This nonsense language will partially replace the actual spoken language when so desired (usually because the speaker/listener don’t know the language well enough).
-
add
(key='default', phonemes='ea oh ae aa eh ah ao aw ai er ey ow ia ih iy oy ua uh uw a e i u y p b t d f v t dh s z sh zh ch jh k ng g m n l r w', grammar='v cv vc cvv vcc vcv cvcc vccv cvccv cvcvcc cvccvcv vccvccvc cvcvccvv cvcvcvcvv', word_length_variance=0, noun_translate=False, noun_prefix='', noun_postfix='', vowels='eaoiuy', manual_translations=None, auto_translations=None, force=False)[source]¶ Add a new language. Note that you generally only need to do this once per language and that adding an existing language will re-initialize all the random components to new permanent values.
- Parameters
key (str, optional) – The name of the language. This will be used as an identifier for the language so it should be short and unique.
phonemes (str, optional) – Space-separated string of all allowed phonemes in this language. If either of the base phonemes (c, v, cc, vv) are present in the grammar, the phoneme list must at least include one example of each.
grammar (str) – All allowed consonant (c) and vowel (v) combinations allowed to build up words. Grammars are broken into the base phonemes (c, v, cc, vv) prioritizing the longer bases. So cvv would be a the c + vv (would allow for a word like ‘die’ whereas cvcvccc would be c+v+c+v+cc+c (a word like ‘galosch’).
word_length_variance (real) – The variation of length of words. 0 means a minimal variance, higher variance may mean words have wildly varying length; this strongly affects how the language “looks”.
noun_translate (bool, optional) – If a proper noun, identified as a capitalized word, should be translated or not. By default they will not, allowing for e.g. the names of characters to be understandable.
noun_prefix (str, optional) – A prefix to go before every noun in this language (if any).
noun_postfix (str, optuonal) – A postfix to go after every noun in this language (if any, usually best to avoid combining with noun_prefix or language becomes very wordy).
vowels (str, optional) – Every vowel allowed in this language.
manual_translations (dict, optional) – This allows for custom-setting certain words in the language to mean the same thing. It is on the form {real_word: fictional_word}, for example {“the”, “y’e”} .
auto_translations (str or list, optional) – These are lists words that should be auto-translated with a random, but fixed, translation. If a path to a file, this file should contain a list of words to produce translations for, one word per line. If a list, the list’s elements should be the words to translate. The manual_translations will always override overlapping translations created automatically.
force (bool, optional) – Unless true, will not allow the addition of a language that is already created.
- Raises
LanguageExistsError – Raised if trying to adding a language with a key that already exists, without force being set.
Notes
The word_file is for example a word-frequency list for the N most common words in the host language. The translations will be random, but will be stored persistently to always be the same. This allows for building a quick, decently-sounding fictive language that tend to produce the same “translation” (mostly) with the same input sentence.
-
translate
(text, level=0.0, language='default')[source]¶ Translate the text according to the given level.
- Parameters
text (str) – The text to translate
level (real) – Value between 0.0 and 1.0, where 0.0 means no obfuscation (text returned unchanged) and 1.0 means full conversion of every word. The closer to 1, the shorter words will be translated.
language (str) – The language key identifier.
- Returns
text (str) – A translated string.
-
exception
DoesNotExist
¶
-
exception
MultipleObjectsReturned
¶ Bases:
evennia.scripts.scripts.DefaultScript.MultipleObjectsReturned
-
path
= 'evennia.contrib.rplanguage.LanguageHandler'¶
-
typename
= 'LanguageHandler'¶
-
-
evennia.contrib.rplanguage.
obfuscate_language
(text, level=0.0, language='default')[source]¶ Main access method for the language parser.
- Parameters
text (str) – Text to obfuscate.
level (real, optional) – A value from 0.0-1.0 determining the level of obfuscation where 0 means no jobfuscation (string returned unchanged) and 1.0 means the entire string is obfuscated.
language (str, optional) – The identifier of a language the system understands.
- Returns
translated (str) – The translated text.
-
evennia.contrib.rplanguage.
add_language
(**kwargs)[source]¶ Access function to creating a new language. See the docstring of LanguageHandler.add for list of keyword arguments.
-
evennia.contrib.rplanguage.
available_languages
()[source]¶ Returns all available language keys.
- Returns
languages (list) – List of key strings of all available languages.
-
evennia.contrib.rplanguage.
obfuscate_whisper
(whisper, level=0.0)[source]¶ Obfuscate whisper depending on a pre-calculated level (that may depend on distance, listening skill etc)
- Parameters
whisper (str) – The whisper string to obscure. The entire string will be considered in the obscuration.
level (real, optional) – This is a value 0-1, where 0 means not obscured (whisper returned unchanged) and 1 means fully obscured.