mirror of
https://github.com/evilew/GS13-Citadel.git
synced 2026-08-26 06:40:17 +01:00
* sync (#3) * shuttle auto call * Merge /vore into /master (#39) * progress * Compile errors fixed No idea if it's test worthy tho as conflicts with race overhaul and narky removal. * Update admins.txt * efforts continue Fuck grab code, seriously * grab code is cancer * Execute the Narkism Do not hesitate. Show no mercy. * holy shit grab code is awful * have I bitched about grab code My bitching, let me show you it * código de agarre es una mierda No really it is * yeah I don't even know anymore. * Lolnope. Fuck grab code * I'm not even sure what to fix anymore * Self eating is not an acceptable fate * Taste the void, son. * My code doesn't pass it's own sanity check. Maybe it's a sign of things to come. * uncommented and notes * It Works and I Don't Know Why (#38) * shuttle auto call * it works and I don't know why * Subsystem 12/21 Most Recent TG subsystem folder * globalvars 12/21 Tossed out the flavor_misc and parallax files * Onclick 12/21 as well as .dme updates * _defines 12/21 ommited old _MC.dm * _HELPERS 12/21 Preserved snowflake placement of furry sprites * _defeines/genetics reapplied narkism holdover for snowflake races. * Oops forgot mutant colors * modules porting 12/21 + Sounds/icons Admin, Client and most of mob life files ommitted * enviroment file * Admin optimizations ahelp log system kept * Mob ports 12/21 Flavor text preserved * datums ported 12/21 * Game ported 12/21 * batch of duplicate fixes/dogborg work Dogborgs need to be modernized to refractored borg standards. * moar fixes * Maps and futher compile fixes
159 lines
4.1 KiB
Plaintext
159 lines
4.1 KiB
Plaintext
/datum/hud/monkey/New(mob/living/carbon/monkey/owner, ui_style = 'icons/mob/screen_midnight.dmi')
|
|
..()
|
|
var/obj/screen/using
|
|
var/obj/screen/inventory/inv_box
|
|
|
|
using = new /obj/screen/act_intent()
|
|
using.icon = ui_style
|
|
using.icon_state = mymob.a_intent
|
|
using.screen_loc = ui_acti
|
|
static_inventory += using
|
|
action_intent = using
|
|
|
|
using = new /obj/screen/mov_intent()
|
|
using.icon = ui_style
|
|
using.icon_state = (mymob.m_intent == MOVE_INTENT_RUN ? "running" : "walking")
|
|
using.screen_loc = ui_movi
|
|
static_inventory += using
|
|
|
|
using = new/obj/screen/wheel/talk
|
|
using.icon = ui_style
|
|
wheels += using
|
|
static_inventory += using
|
|
|
|
using = new /obj/screen/drop()
|
|
using.icon = ui_style
|
|
using.screen_loc = ui_drop_throw
|
|
static_inventory += using
|
|
|
|
build_hand_slots(ui_style)
|
|
|
|
using = new /obj/screen/swap_hand()
|
|
using.icon = ui_style
|
|
using.icon_state = "swap_1_m" //extra wide!
|
|
using.screen_loc = ui_swaphand_position(owner,1)
|
|
static_inventory += using
|
|
|
|
using = new /obj/screen/swap_hand()
|
|
using.icon = ui_style
|
|
using.icon_state = "swap_2"
|
|
using.screen_loc = ui_swaphand_position(owner,2)
|
|
static_inventory += using
|
|
|
|
inv_box = new /obj/screen/inventory()
|
|
inv_box.name = "mask"
|
|
inv_box.icon = ui_style
|
|
inv_box.icon_state = "mask"
|
|
// inv_box.icon_full = "template"
|
|
inv_box.screen_loc = ui_monkey_mask
|
|
inv_box.slot_id = slot_wear_mask
|
|
static_inventory += inv_box
|
|
|
|
inv_box = new /obj/screen/inventory()
|
|
inv_box.name = "neck"
|
|
inv_box.icon = ui_style
|
|
inv_box.icon_state = "neck"
|
|
// inv_box.icon_full = "template"
|
|
inv_box.screen_loc = ui_monkey_neck
|
|
inv_box.slot_id = slot_neck
|
|
static_inventory += inv_box
|
|
|
|
inv_box = new /obj/screen/inventory()
|
|
inv_box.name = "head"
|
|
inv_box.icon = ui_style
|
|
inv_box.icon_state = "head"
|
|
// inv_box.icon_full = "template"
|
|
inv_box.screen_loc = ui_monkey_head
|
|
inv_box.slot_id = slot_head
|
|
static_inventory += inv_box
|
|
|
|
inv_box = new /obj/screen/inventory()
|
|
inv_box.name = "back"
|
|
inv_box.icon = ui_style
|
|
inv_box.icon_state = "back"
|
|
inv_box.icon_full = "template_small"
|
|
inv_box.screen_loc = ui_back
|
|
inv_box.slot_id = slot_back
|
|
static_inventory += inv_box
|
|
|
|
throw_icon = new /obj/screen/throw_catch()
|
|
throw_icon.icon = ui_style
|
|
throw_icon.screen_loc = ui_drop_throw
|
|
hotkeybuttons += throw_icon
|
|
|
|
internals = new /obj/screen/internals()
|
|
infodisplay += internals
|
|
|
|
healths = new /obj/screen/healths()
|
|
infodisplay += healths
|
|
|
|
pull_icon = new /obj/screen/pull()
|
|
pull_icon.icon = ui_style
|
|
pull_icon.update_icon(mymob)
|
|
pull_icon.screen_loc = ui_pull_resist
|
|
static_inventory += pull_icon
|
|
|
|
lingchemdisplay = new /obj/screen/ling/chems()
|
|
infodisplay += lingchemdisplay
|
|
|
|
lingstingdisplay = new /obj/screen/ling/sting()
|
|
infodisplay += lingstingdisplay
|
|
|
|
|
|
zone_select = new /obj/screen/zone_sel()
|
|
zone_select.icon = ui_style
|
|
zone_select.update_icon(mymob)
|
|
static_inventory += zone_select
|
|
|
|
mymob.client.screen = list()
|
|
|
|
using = new /obj/screen/resist()
|
|
using.icon = ui_style
|
|
using.screen_loc = ui_pull_resist
|
|
hotkeybuttons += using
|
|
|
|
for(var/obj/screen/inventory/inv in (static_inventory + toggleable_inventory))
|
|
if(inv.slot_id)
|
|
inv.hud = src
|
|
inv_slots[inv.slot_id] = inv
|
|
inv.update_icon()
|
|
|
|
/datum/hud/monkey/persistent_inventory_update()
|
|
if(!mymob)
|
|
return
|
|
var/mob/living/carbon/monkey/M = mymob
|
|
|
|
if(hud_shown)
|
|
if(M.back)
|
|
M.back.screen_loc = ui_back
|
|
M.client.screen += M.back
|
|
if(M.wear_mask)
|
|
M.wear_mask.screen_loc = ui_monkey_mask
|
|
M.client.screen += M.wear_mask
|
|
if(M.wear_neck)
|
|
M.wear_neck.screen_loc = ui_monkey_neck
|
|
M.client.screen += M.wear_neck
|
|
if(M.head)
|
|
M.head.screen_loc = ui_monkey_head
|
|
M.client.screen += M.head
|
|
else
|
|
if(M.back)
|
|
M.back.screen_loc = null
|
|
if(M.wear_mask)
|
|
M.wear_mask.screen_loc = null
|
|
if(M.head)
|
|
M.head.screen_loc = null
|
|
|
|
if(hud_version != HUD_STYLE_NOHUD)
|
|
for(var/obj/item/I in M.held_items)
|
|
I.screen_loc = ui_hand_position(M.get_held_index_of_item(I))
|
|
M.client.screen += I
|
|
else
|
|
for(var/obj/item/I in M.held_items)
|
|
I.screen_loc = null
|
|
M.client.screen -= I
|
|
|
|
/mob/living/carbon/monkey/create_mob_hud()
|
|
if(client && !hud_used)
|
|
hud_used = new /datum/hud/monkey(src, ui_style2icon(client.prefs.UI_style))
|