This commit is contained in:
Improvedname
2020-03-06 20:12:43 +01:00
parent 685f17d8d5
commit 0c1ddee60e
19 changed files with 32 additions and 1 deletions

View File

@@ -44,6 +44,7 @@
#define MODE_KEY_VOCALCORDS "x"
#define MODE_MONKEY "monkeyhive"
#define MODE_SING "%"
//Spans. Robot speech, italics, etc. Applied in compose_message().
#define SPAN_ROBOT "robot"
@@ -54,6 +55,7 @@
#define SPAN_REALLYBIG "reallybig"
#define SPAN_COMMAND "command_headset"
#define SPAN_CLOWN "clown"
#define SPAN_SINGING "singing"
//bitflag #defines for return value of the radio() proc.
#define ITALICS 1

View File

@@ -13,6 +13,7 @@
var/verb_ask = "asks"
var/verb_exclaim = "exclaims"
var/verb_whisper = "whispers"
var/verb_sing = "sings"
var/verb_yell = "yells"
var/speech_span
var/inertia_dir = 0

View File

@@ -4,6 +4,7 @@
speech_verb = "garbles"
ask_verb = "mumbles"
whisper_verb = "mutters"
sing_verb = "gibbers"
exclaim_verb = "screams incoherently"
flags = LANGUAGE_HIDE_ICON_IF_NOT_UNDERSTOOD
key = "i"

View File

@@ -2,6 +2,7 @@
name = "Beachtongue"
desc = "An ancient language from the distant Beach Planet. People magically learn to speak it under the influence of space drugs."
speech_verb = "mumbles"
sing_verb = "parties"
ask_verb = "grills"
exclaim_verb = "hollers"
key = "u"

View File

@@ -4,6 +4,7 @@
desc = "The common galactic tongue."
speech_verb = "says"
whisper_verb = "whispers"
sing_verb = "sings"
key = "0"
flags = TONGUELESS_SPEECH | LANGUAGE_HIDE_ICON_IF_UNDERSTOOD
default_priority = 100

View File

@@ -3,6 +3,7 @@
desc = "The common language of lizard-people, composed of sibilant hisses and rattles."
speech_verb = "hisses"
ask_verb = "hisses"
sing_verb = "sings"
exclaim_verb = "roars"
key = "o"
flags = TONGUELESS_SPEECH

View File

@@ -3,6 +3,7 @@
desc = "A heavily encoded damage control coordination stream, with special flags for hats."
speech_verb = "chitters"
ask_verb = "chitters inquisitively"
sing_verb = "chimes"
exclaim_verb = "chitters loudly"
spans = list(SPAN_ROBOT)
key = "d"

View File

@@ -11,6 +11,7 @@
var/ask_verb = "asks" // Used when sentence ends in a ?
var/exclaim_verb = "exclaims" // Used when sentence ends in a !
var/whisper_verb = "whispers" // Optional. When not specified speech_verb + quietly/softly is used instead.
var/sing_verb = "sings" // Used for singing.
var/list/signlang_verb = list("signs", "gestures") // list of emotes that might be displayed if this language has NONVERBAL or SIGNLANG flags
var/key // Character used to speak in language
// If key is null, then the language isn't real or learnable.

View File

@@ -4,6 +4,7 @@
speech_verb = "whistles"
ask_verb = "chirps"
exclaim_verb = "whistles loudly"
sing_verb = "whistles melodically"
spans = list(SPAN_ROBOT)
key = "6"
flags = NO_STUTTER

View File

@@ -4,6 +4,7 @@
speech_verb = "chimpers"
ask_verb = "chimpers"
exclaim_verb = "screeches"
sing_verb = "chimpers tunefully"
key = "1"
space_chance = 100
syllables = list("oop", "aak", "chee", "eek")

View File

@@ -5,6 +5,7 @@
ask_verb = "puffs inquisitively"
exclaim_verb = "poofs loudly"
whisper_verb = "puffs quietly"
sing_verb = "puffs musically"
key = "y"
sentence_chance = 0
default_priority = 80

View File

@@ -4,6 +4,7 @@
speech_verb = "intones"
ask_verb = "inquires"
exclaim_verb = "invokes"
sing_verb = "intones"
key = "n"
sentence_chance = 8
space_chance = 95 //very high due to the potential length of each syllable

View File

@@ -4,6 +4,7 @@
speech_verb = "tones"
ask_verb = "tones inquisitively"
exclaim_verb = "tones loudly"
sing_verb = "tones"
spans = list(SPAN_ROBOT)
key = "s"
flags = NO_STUTTER

View File

@@ -4,6 +4,7 @@
speech_verb = "hisses"
ask_verb = "hisses"
exclaim_verb = "hisses"
sing_verb = "hisses musically"
key = "4"
syllables = list("sss","sSs","SSS")
default_priority = 50

View File

@@ -86,7 +86,7 @@ GLOBAL_LIST_INIT(department_radio_keys, list(
var/static/list/unconscious_allowed_modes = list(MODE_CHANGELING = TRUE, MODE_ALIEN = TRUE)
var/talk_key = get_key(message)
var/static/list/one_character_prefix = list(MODE_HEADSET = TRUE, MODE_ROBOT = TRUE, MODE_WHISPER = TRUE)
var/static/list/one_character_prefix = list(MODE_HEADSET = TRUE, MODE_ROBOT = TRUE, MODE_WHISPER = TRUE, MODE_SING = TRUE)
if(sanitize)
message = trim(copytext(sanitize(message), 1, MAX_MESSAGE_LEN))
@@ -190,6 +190,15 @@ GLOBAL_LIST_INIT(department_radio_keys, list(
var/datum/language/L = GLOB.language_datum_instances[language]
spans |= L.spans
if(message_mode == MODE_SING)
#if DM_VERSION < 513
var/randomnote = "~"
#else
var/randomnote = pick("\u2669", "\u266A", "\u266B")
#endif
spans |= SPAN_SINGING
message = "[randomnote] [message] [randomnote]"
var/radio_return = radio(message, message_mode, spans, language)
if(radio_return & ITALICS)
spans |= SPAN_ITALICS
@@ -399,6 +408,8 @@ GLOBAL_LIST_INIT(department_radio_keys, list(
. = "stammers"
else if(derpspeech)
. = "gibbers"
else if(message_mode == MODE_SING)
. = verb_sing
else
. = ..()

View File

@@ -90,6 +90,8 @@
var/key = copytext(message, 1, 2)
if(key == "#")
return MODE_WHISPER
else if(key == "%")
return MODE_SING
else if(key == ";")
return MODE_HEADSET
else if(length(message) > 2 && (key in GLOB.department_radio_prefixes))

View File

@@ -835,6 +835,7 @@ h1.alert, h2.alert {color: #000000;}
.greentext {color: #00FF00; font-size: 24px;}
.redtext {color: #FF0000; font-size: 24px;}
.clown {color: #FF69Bf; font-size: 24px; font-family: "Comic Sans MS", cursive, sans-serif; font-weight: bold;}
.singing {font-family: "Trebuchet MS", cursive, sans-serif; font-style: italic;}
.hypnophrase {color: #202020; font-weight: bold; animation: hypnocolor 1500ms infinite;}
@keyframes hypnocolor {
0% { color: #202020; }

View File

@@ -152,6 +152,7 @@ h1.alert, h2.alert {color: #000000;}
.greentext {color: #00FF00; font-size: 3;}
.redtext {color: #FF0000; font-size: 3;}
.clown {color: #FF69Bf; font-size: 3; font-family: "Comic Sans MS", cursive, sans-serif; font-weight: bold;}
.singing {font-family: "Trebuchet MS", cursive, sans-serif; font-style: italic;}
.his_grace {color: #15D512; font-family: "Courier New", cursive, sans-serif; font-style: italic;}
.velvet {color: #660015; font-weight: bold; animation: velvet 5000ms infinite;}
@keyframes velvet {

View File

@@ -486,6 +486,7 @@ sigh
sign
signal
sin
sing
sip
ski
skip