From 8befc4aab81c180273ab8bf12dafc6a5168ab3cb Mon Sep 17 00:00:00 2001 From: feartheblackout <59633984+feartheblackout@users.noreply.github.com> Date: Sat, 27 Jul 2024 05:10:10 -0500 Subject: [PATCH] The Tree Update: Makes it easier for Dionae to color their body markings, removes hairstyles and skin tone from them, makes the tail marking into an actual tail (#19589) https://github.com/Aurorastation/Aurora.3/assets/59633984/76c7c7a4-fa06-457c-bf8c-0a9bda733f49 Basically, uses the species' list of skin color presets, if any, to add a button for body markings to select the same presets. This is only really useful for Dionae at the moment, or at least I imagine so. Skin tones and hairstyles were also removed from Dionae, as figuring out how to add selectable tone for body markings was too much of a hassle and adding presets for hairstyles as well seemed redundant. I was thinking of adding a "random body markings" proc to resolve the issue of newly formed gestalts not spawning with any hair, but let me know if this is desired. I discussed this with the Diona lore maintainer beforehand, but the team is free to change their mind or request more features at any time. --- .../preference_setup/general/03_body.dm | 10 +- .../abstract/new_player/sprite_accessories.dm | 167 ------------------ .../human/species/station/diona/diona.dm | 6 +- .../SimpleMaroon-dionacoloration.yml | 61 +++++++ icons/mob/human_races/markings_diona.dmi | Bin 5526 -> 5332 bytes icons/mob/species/diona/tail.dmi | Bin 0 -> 654 bytes 6 files changed, 75 insertions(+), 169 deletions(-) create mode 100644 html/changelogs/SimpleMaroon-dionacoloration.yml create mode 100644 icons/mob/species/diona/tail.dmi diff --git a/code/modules/client/preference_setup/general/03_body.dm b/code/modules/client/preference_setup/general/03_body.dm index d017b28664e..098fb6f3f66 100644 --- a/code/modules/client/preference_setup/general/03_body.dm +++ b/code/modules/client/preference_setup/general/03_body.dm @@ -343,7 +343,7 @@ var/global/list/valid_bloodtypes = list( out += "
Body Markings +
" for(var/M in pref.body_markings) - out += "[M] [pref.body_markings.len > 1 ? "˄ ˅ " : ""]- Color" + out += "[M] [pref.body_markings.len > 1 ? "˄ ˅ " : ""]- Color[length(mob_species.character_color_presets) ? "Preset" : ""]" out += HTML_RECT(pref.body_markings[M]) out += "
" @@ -731,6 +731,14 @@ var/global/list/valid_bloodtypes = list( pref.body_markings[M] = "[mark_color]" return TOPIC_REFRESH_UPDATE_PREVIEW + else if(href_list["marking_preset"]) + var/M = href_list["marking_preset"] + var/mark_preset = tgui_input_list(user, "Choose the [M] preset: ", "Character Preference", mob_species.character_color_presets, rgb(pref.r_skin, pref.g_skin, pref.b_skin)) + mark_preset = mob_species.character_color_presets[mark_preset] + if(mark_preset && CanUseTopic(user)) + pref.body_markings[M] = "[mark_preset]" + return TOPIC_REFRESH_UPDATE_PREVIEW + else if(href_list["limbs"]) var/list/acceptable_organ_input = list("Head", "Left Leg","Right Leg","Left Arm","Right Arm","Left Foot","Right Foot","Left Hand","Right Hand") var/limb_name = tgui_input_list(user, "Which limb do you want to change?", "Limbs", acceptable_organ_input) diff --git a/code/modules/mob/abstract/new_player/sprite_accessories.dm b/code/modules/mob/abstract/new_player/sprite_accessories.dm index 2056eacf513..2e51ee7f636 100644 --- a/code/modules/mob/abstract/new_player/sprite_accessories.dm +++ b/code/modules/mob/abstract/new_player/sprite_accessories.dm @@ -1574,99 +1574,6 @@ Follow by example and make good judgement based on length which list to include icon_state = "hair_mullet" chatname = "mullet" -/datum/sprite_accessory/hair/bug_eyes - icon = 'icons/mob/human_face/dionae_hair.dmi' - name = "Bug Eyes" - icon_state = "bugeyes" - species_allowed = list(/datum/species/diona, /datum/species/diona/coeu) - gender = NEUTER - do_colouration = FALSE - -/datum/sprite_accessory/hair/bug_eyes/human_eyes - name = "Human Eyes" - icon_state = "humaneyes" - -/datum/sprite_accessory/hair/bug_eyes/skrell_eyes - name = "Skrell Eyes" - icon_state = "skrelleyes" - -/datum/sprite_accessory/hair/bug_eyes/skrell_eyes_2 - name = "Skrell Eyes 2" - icon_state = "skrelleyes2" - -/datum/sprite_accessory/hair/bug_eyes/small_horns - name = "Small Horns" - icon_state = "smallhorns" - -/datum/sprite_accessory/hair/bug_eyes/horny - name = "Horny" - icon_state = "horny" - -/datum/sprite_accessory/hair/bug_eyes/headtails - name = "Head tails" - icon_state = "headtails" - -/datum/sprite_accessory/hair/bug_eyes/headtails_2 - name = "Head tails 2" - icon_state = "headtails2" - -/datum/sprite_accessory/hair/bug_eyes/tiny_eye - name = "Tiny Eye" - icon_state = "tinyeye" - -/datum/sprite_accessory/hair/bug_eyes/eyebrow - name = "Eyebrow" - icon_state = "eyebrow" - -/datum/sprite_accessory/hair/bug_eyes/bullhorn - name = "Bullhorn" - icon_state = "bullhorn" - -/datum/sprite_accessory/hair/bug_eyes/blinkinghelmethead - name = "Blinking Helmethead" - icon_state = "blinkinghelmethead" - -/datum/sprite_accessory/hair/bug_eyes/periscope - name = "Periscope" - icon_state = "periscope" - -/datum/sprite_accessory/hair/bug_eyes/glorp - name = "Glorp" - icon_state = "glorp" - -/datum/sprite_accessory/hair/bug_eyes/mellow_cap - name = "Mellow Cap" - icon_state = "mellowcap" - -/datum/sprite_accessory/hair/bug_eyes/red_cap - name = "Red Cap" - icon_state = "redcap" - -/datum/sprite_accessory/hair/bug_eyes/fun_guy - name = "Fun Guy" - icon_state = "funguy" - -/datum/sprite_accessory/hair/bug_eyes/spanish_moss - name = "Spanish Moss" - icon_state = "spanishmoss" - -/datum/sprite_accessory/hair/bug_eyes/shelflife - name = "Shelflife" - icon_state = "shelflife" - do_colouration = TRUE - -/datum/sprite_accessory/hair/bug_eyes/oak - name = "Oak" - icon_state = "oak" - -/datum/sprite_accessory/hair/bug_eyes/thorns - name = "Thorns" - icon_state = "thorns" - -/datum/sprite_accessory/hair/bug_eyes/stump - name = "Stump" - icon_state = "stump" - // TG-format hair - uses ICON_MULTIPLY instead of ICON_ADD /datum/sprite_accessory/hair/balding icon = 'icons/mob/human_face/hair_multiply.dmi' @@ -4491,74 +4398,6 @@ Follow by example and make good judgement based on length which list to include name = "golden deep IPC screen" icon_state = "ipc_gd" -/datum/sprite_accessory/facial_hair/diona_eye - icon = 'icons/mob/human_face/dionae_hair.dmi' - name = "Mono Eye" - icon_state = "monoeye" - species_allowed = list(/datum/species/diona, /datum/species/diona/coeu) - gender = NEUTER - do_colouration = FALSE - -/datum/sprite_accessory/facial_hair/diona_eye/trioptics - name = "Trioptics" - icon_state = "trioptics" - -/datum/sprite_accessory/facial_hair/diona_eye/lopsided - name = "Lopsided Eyes" - icon_state = "lopsided" - -/datum/sprite_accessory/facial_hair/diona_eye/helmethead - name = "Helmethead" - icon_state = "helmethead" - -/datum/sprite_accessory/facial_hair/diona_eye/eyestalk - name = "Eyestalk" - icon_state = "eyestalk" - -/datum/sprite_accessory/facial_hair/diona_eye/treebeard - name = "Treebeard" - icon_state = "treebeard" - -/datum/sprite_accessory/facial_hair/diona_eye/bug_eyes - name = "Bug Eyes" - icon_state = "bugeyes" - -/datum/sprite_accessory/facial_hair/diona_eye/human_eyes - name = "Human Eyes" - icon_state = "humaneyes" - -/datum/sprite_accessory/facial_hair/diona_eye/skrell_eyes - name = "Skrell Eyes" - icon_state = "skrelleyes" - -/datum/sprite_accessory/facial_hair/diona_eye/skrell_eyes_2 - name = "Skrell Eyes 2" - icon_state = "skrelleyes2" - -/datum/sprite_accessory/facial_hair/diona_eye/tiny_eye - name = "Tiny Eye" - icon_state = "tinyeye" - -/datum/sprite_accessory/facial_hair/diona_eye/eyebrow - name = "Eyebrow" - icon_state = "eyebrow" - -/datum/sprite_accessory/facial_hair/diona_eye/blinkinghelmethead - name = "Blinking Helmethead" - icon_state = "blinkinghelmethead" - -/datum/sprite_accessory/facial_hair/diona_eye/periscope - name = "Periscope" - icon_state = "periscope" - -/datum/sprite_accessory/facial_hair/diona_eye/glorp - name = "Glorp" - icon_state = "glorp" - -/datum/sprite_accessory/facial_hair/diona_eye/snout - name = "Snout" - icon_state = "snout" - /datum/sprite_accessory/facial_hair/tuux_whiskers icon = 'icons/mob/human_face/skrell_beards.dmi' name = "Tuux Tentacle Whiskers" @@ -6376,12 +6215,6 @@ Follow by example and make good judgement based on length which list to include body_parts = list(BP_R_HAND, BP_L_HAND) do_colouration = FALSE -/datum/sprite_accessory/marking/diona_leaves/tail - name = "Tail" - icon_state = "dionatail" - body_parts = list(BP_GROIN) - do_colouration = FALSE - // Baseline markings. /datum/sprite_accessory/marking/baseline_head name = "Baseline - Raxus Primary Colors" diff --git a/code/modules/mob/living/carbon/human/species/station/diona/diona.dm b/code/modules/mob/living/carbon/human/species/station/diona/diona.dm index 0f902877663..f75270a71c3 100644 --- a/code/modules/mob/living/carbon/human/species/station/diona/diona.dm +++ b/code/modules/mob/living/carbon/human/species/station/diona/diona.dm @@ -97,7 +97,7 @@ body_temperature = T0C + 15 //make the plant people have a bit lower body temperature, why not - appearance_flags = HAS_HAIR_COLOR | HAS_SKIN_TONE | HAS_SKIN_PRESET + appearance_flags = HAS_HAIR_COLOR | HAS_SKIN_PRESET flags = NO_BREATHE | NO_SCAN | IS_PLANT | NO_BLOOD | NO_SLIP | NO_CHUBBY | NO_ARTERIES spawn_flags = CAN_JOIN | IS_WHITELISTED | NO_AGE_MINIMUM @@ -135,6 +135,10 @@ snore_key = "chirp" indefinite_sleep = TRUE + tail = "No Tail" + tail_animation = 'icons/mob/species/diona/tail.dmi' + selectable_tails = list("No Tail", "Unathi Tail") + /datum/species/diona/can_understand(var/mob/other) var/mob/living/carbon/alien/diona/D = other if(istype(D)) diff --git a/html/changelogs/SimpleMaroon-dionacoloration.yml b/html/changelogs/SimpleMaroon-dionacoloration.yml new file mode 100644 index 00000000000..d28aa49ced4 --- /dev/null +++ b/html/changelogs/SimpleMaroon-dionacoloration.yml @@ -0,0 +1,61 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: SimpleMaroon + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added a 'preset' button to body markings that lets you choose the same color presets that your species has; it only shows up if your species actually has color presets." + - rscdel: "Removed skin tone selectability from Dionae." + - qol: "Changed the tail body marking for Dionae into an actual tail option." + - rscdel: "Dionae no longer have hair styles or facial hair styles, as all of them are selectable under body markings anyway." diff --git a/icons/mob/human_races/markings_diona.dmi b/icons/mob/human_races/markings_diona.dmi index 388b21f38b039b85ed8350a8d5406ee2812559cf..188a8b0017b534d659140d2c766a4beb75767b64 100644 GIT binary patch delta 4976 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 Za-850;$flk1paAcV_|Pzck%ku{{bpa4JH5p delta 5194 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 UrYg0Q{tnU7%+9pd`1<|-0$@*1@c;k- diff --git a/icons/mob/species/diona/tail.dmi b/icons/mob/species/diona/tail.dmi new file mode 100644 index 0000000000000000000000000000000000000000..94cfc687fecf0012c74e0141189e42a915820d91 GIT binary patch literal 654 zcmV;90&)F`P)Bu!i{XIV49%!(qBBd7C_}^r z65OPvpwA8928fCliN+;2C3YZjlCiv_U6$s3su<0eiDa5jV+;TQ000000000000000 z|1VFvtuR@_g#+VqlNIR}n)`>`j1um%Ps8Vg>x_AK^Q8MW?+^e00Ptjs_ERB_M9pWe zHDsL>XiuC_=d)F7$bAamZC3|hb5y_7`Es})veOSKaJk(5^|bHl^7Z3nF)ErCFtgKY zAq6JYvY8P3o+AJItE%y8R(~3lccuIe%5m9DNPSO}|9QOnI)AJ`+^jFe`OU~nGa>gq z|NQRJ&2L|gIeWYA`ggS3iH^SKop0H`19^Hs(cSm_@&Et;fVTvF@zCG*#n8T|%ZK(o zT|Tt$>GPp|Pn!?zd+K~>-&5y9`(8*M0000u7WY2rA?|&!U*!9s$HKVxL63!T?}Hv9 o-v@m*#=Q^ri+>;N$9*u|Hy1`^=O(YjUH||907*qoM6N<$f@lgZRsaA1 literal 0 HcmV?d00001