Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes CL from ID Computer & updates "centcom" #3725

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/__HELPERS/job.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
return all_jobs


/proc/get_all_centcom_jobs() return list()
/proc/get_all_wy_jobs() return JOB_WY_GOON_LIST + JOB_PMC_GRUNT_LIST + list(JOB_CORPORATE_LIAISON)

//gets the actual job rank (ignoring alt titles)
//this is used solely for sechuds
Expand All @@ -39,7 +39,7 @@
var/obj/item/card/id/I = src
if(istype(I))
var/job_icons = get_all_job_icons()
var/centcom = get_all_centcom_jobs()
var/centcom = get_all_wy_jobs()

if(I.assignment in job_icons) return I.assignment//Check if the job has a hud icon
if(I.rank in job_icons) return I.rank
Expand Down
22 changes: 13 additions & 9 deletions code/modules/cm_marines/marines_consoles.dm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
var/list/factions = list(FACTION_MARINE)
var/printing

var/is_centcom = FALSE
var/is_wey_yu = FALSE
var/authenticated = FALSE

/obj/structure/machinery/computer/card/proc/authenticate(mob/user, obj/item/card/id/id_card)
Expand Down Expand Up @@ -196,7 +196,7 @@
target_id_card.assignment = custom_name
else
var/list/new_access = list()
if(is_centcom)
if(is_wey_yu)
new_access = get_all_weyland_access()
else
var/datum/job/job = RoleAuthority.roles_for_mode[target]
Expand Down Expand Up @@ -227,7 +227,7 @@
log_idmod(target_id_card, "<font color='green'> [key_name_admin(usr)] granted [access_type] IFF. </font>")
return TRUE
access_type = text2num(params["access_target"])
if(access_type in (is_centcom ? get_all_weyland_access() : get_main_marine_access()))
if(access_type in (is_wey_yu ? get_all_weyland_access() : get_main_marine_access()))
if(access_type in target_id_card.access)
target_id_card.access -= access_type
log_idmod(target_id_card, "<font color='red'> [key_name_admin(usr)] revoked access '[access_type]'. </font>")
Expand All @@ -239,7 +239,7 @@
if(!authenticated || !target_id_card)
return

target_id_card.access |= (is_centcom ? get_all_weyland_access() : get_main_marine_access())
target_id_card.access |= (is_wey_yu ? get_all_weyland_access() : get_main_marine_access())
target_id_card.faction_group |= factions
log_idmod(target_id_card, "<font color='green'> [key_name_admin(usr)] granted the ID all access and USCM IFF. </font>")
return TRUE
Expand Down Expand Up @@ -294,18 +294,22 @@
/obj/structure/machinery/computer/card/ui_static_data(mob/user)
var/list/data = list()
data["station_name"] = station_name
data["centcom_access"] = is_centcom
data["wey_yu_access"] = is_wey_yu
data["manifest"] = GLOB.data_core.get_manifest(FALSE, FALSE, TRUE)

var/list/departments
if(is_centcom)
departments = list("CentCom" = get_all_centcom_jobs())
if(is_wey_yu)
departments = list(
"Weyland Yutani" = list(JOB_CORPORATE_LIAISON, JOB_TRAINEE, JOB_JUNIOR_EXECUTIVE, JOB_EXECUTIVE),
"Corporate Security" = JOB_WY_GOON_LIST,
"PMCs" = JOB_PMC_GRUNT_LIST
)
else if(Check_WO())
// I am not sure about WOs departments so it may need adjustment
departments = list(
CARDCON_DEPARTMENT_COMMAND = ROLES_CIC & ROLES_WO,
CARDCON_DEPARTMENT_AUXCOM = ROLES_AUXIL_SUPPORT & ROLES_WO,
CARDCON_DEPARTMENT_MISC = ROLES_MISC & ROLES_WO,
CARDCON_DEPARTMENT_MISC = (ROLES_MISC & ROLES_WO) - JOB_CORPORATE_LIAISON,
CARDCON_DEPARTMENT_SECURITY = ROLES_POLICE & ROLES_WO,
CARDCON_DEPARTMENT_ENGINEERING = ROLES_ENGINEERING & ROLES_WO,
CARDCON_DEPARTMENT_SUPPLY = ROLES_REQUISITION & ROLES_WO,
Expand All @@ -316,7 +320,7 @@
departments = list(
CARDCON_DEPARTMENT_COMMAND = ROLES_CIC - ROLES_WO,
CARDCON_DEPARTMENT_AUXCOM = ROLES_AUXIL_SUPPORT - ROLES_WO,
CARDCON_DEPARTMENT_MISC = ROLES_MISC - ROLES_WO,
CARDCON_DEPARTMENT_MISC = ROLES_MISC - ROLES_WO - JOB_CORPORATE_LIAISON,
CARDCON_DEPARTMENT_SECURITY = ROLES_POLICE - ROLES_WO,
CARDCON_DEPARTMENT_ENGINEERING = ROLES_ENGINEERING - ROLES_WO,
CARDCON_DEPARTMENT_SUPPLY = ROLES_REQUISITION - ROLES_WO,
Expand Down