Files
Aurora.3/code/modules/client/client_procs.dm
Fluffy 457a091d9a Clicks refactor (#20321)
Added various events to the dcs system in regards to click handling.
Refactored various mouse related procs.
Fixed MUI mask.
Fixed AI jump on double click.
Fixed some runtimes with the click handler system.
Updated the click handler system.
Fixed fireman carry.
2025-01-09 23:04:48 +00:00

971 lines
34 KiB
Plaintext

var/list/localhost_addresses = list(
"127.0.0.1" = TRUE,
"::1" = TRUE
)
////////////
//SECURITY//
////////////
#define UPLOAD_LIMIT 10485760 //Restricts client uploads to the server to 10MB //Boosted this thing. What's the worst that can happen?
#define MIN_CLIENT_VERSION 0 //Just an ambiguously low version for now, I don't want to suddenly stop people playing.
//I would just like the code ready should it ever need to be used.
/*
When somebody clicks a link in game, this Topic is called first.
It does the stuff in this proc and then is redirected to the Topic() proc for the src=[0xWhatever]
(if specified in the link). ie locate(hsrc).Topic()
Such links can be spoofed.
Because of this certain things MUST be considered whenever adding a Topic() for something:
- Can it be fed harmful values which could cause runtimes?
- Is the Topic call an admin-only thing?
- If so, does it have checks to see if the person who called it (usr.client) is an admin?
- Are the processes being called by Topic() particularly laggy?
- If so, is there any protection against somebody spam-clicking a link?
If you have any questions about this stuff feel free to ask. ~Carn
*/
/client/Topic(href, href_list, hsrc)
if(!usr || usr != mob) //stops us calling Topic for somebody else's client. Also helps prevent usr=null
return
// asset_cache
var/asset_cache_job
if(href_list["asset_cache_confirm_arrival"])
//to_chat(src, "ASSET JOB [href_list["asset_cache_confirm_arrival"]] ARRIVED.")
//because we skip the limiter, we have to make sure this is a valid arrival and not somebody tricking us
// into letting append to a list without limit.
asset_cache_job = asset_cache_confirm_arrival(href_list["asset_cache_confirm_arrival"])
if(!asset_cache_job)
return
//byond bug ID:2256651
if (asset_cache_job && (asset_cache_job in completed_asset_jobs))
to_chat(src, SPAN_DANGER("An error has been detected in how your client is receiving resources. Attempting to correct.... (If you keep seeing these messages you might want to close byond and reconnect)"))
src << browse("...", "window=asset_cache_browser")
return
if (href_list["asset_cache_preload_data"])
asset_cache_preload_data(href_list["asset_cache_preload_data"])
return
if(!authed)
if(href_list["authaction"] in list("guest", "forums")) // Protection
..()
return
// Tgui Topic middleware
if(tgui_Topic(href_list))
return
if(href_list["reload_tguipanel"])
nuke_chat()
if(href_list["reload_statbrowser"])
stat_panel.reinitialize()
if (href_list["EMERG"] && href_list["EMERG"] == "action")
if (!info_sent)
handle_connection_info(src, href_list["data"])
info_sent = 1
return
//search the href for script injection
if( findtext(href,"<script",1,0) )
log_world("ERROR: Attempted use of scripts within a topic call, by [src]")
message_admins("Attempted use of scripts within a topic call, by [src]")
//del(usr)
return
//Admin PM
if(href_list["priv_msg"])
var/client/C = locate(href_list["priv_msg"])
var/datum/ticket/ticket = locate(href_list["ticket"])
if (!isnull(ticket) && !istype(ticket))
return
if(ismob(C)) //Old stuff can feed-in mobs instead of clients
var/mob/M = C
C = M.client
cmd_admin_pm(C, null, ticket)
return
if(href_list["close_ticket"])
var/datum/ticket/ticket = locate(href_list["close_ticket"])
if(!istype(ticket))
return
ticket.close(src)
if(href_list["discord_msg"])
if(!holder && received_discord_pm < world.time - 6000) //Worse they can do is spam IRC for 10 minutes
to_chat(usr, SPAN_WARNING("You are no longer able to use this, it's been more then 10 minutes since an admin on Discord has responded to you"))
return
if(mute_discord)
to_chat(usr, "<span class='warning'You cannot use this as your client has been muted from sending messages to the admins on Discord</span>")
return
cmd_admin_discord_pm(href_list["discord_msg"])
return
//Logs all hrefs
if(GLOB.config && GLOB.config.logsettings["log_hrefs"] && GLOB.href_logfile)
WRITE_LOG(GLOB.config.logfiles["world_href_log"], "<small>[time2text(world.timeofday,"hh:mm")] [src] (usr:[usr])</small> || [hsrc ? "[hsrc] " : ""][href]<br>")
switch(href_list["_src_"])
if("holder") hsrc = holder
if("usr") hsrc = mob
if("prefs") return prefs.process_link(usr,href_list)
if("vars") return view_var_Topic(href,href_list,hsrc)
switch(href_list["action"])
if("openLink")
send_link(src, href_list["link"])
if(href_list["warnacknowledge"])
var/queryid = text2num(href_list["warnacknowledge"])
warnings_acknowledge(queryid)
if(href_list["notifacknowledge"])
var/queryid = text2num(href_list["notifacknowledge"])
notifications_acknowledge(queryid)
if(href_list["warnview"])
warnings_check()
if(href_list["linkingrequest"])
if (!GLOB.config.webint_url)
return
if (!href_list["linkingaction"])
return
var/request_id = text2num(href_list["linkingrequest"])
if (!establish_db_connection(GLOB.dbcon))
to_chat(src, SPAN_WARNING("Action failed! Database link could not be established!"))
return
var/DBQuery/check_query = GLOB.dbcon.NewQuery("SELECT player_ckey, status FROM ss13_player_linking WHERE id = :id:")
check_query.Execute(list("id" = request_id))
if (!check_query.NextRow())
to_chat(src, SPAN_WARNING("No request found!"))
return
if (ckey(check_query.item[1]) != ckey || check_query.item[2] != "new")
to_chat(src, SPAN_WARNING("Request authentication failed!"))
return
var/query_contents = ""
var/list/query_details = list("new_status", "id")
var/feedback_message = ""
switch (href_list["linkingaction"])
if ("accept")
query_contents = "UPDATE ss13_player_linking SET status = :new_status:, updated_at = NOW() WHERE id = :id:"
query_details["new_status"] = "confirmed"
query_details["id"] = request_id
feedback_message = SPAN_DANGER("<b>Account successfully linked!</b>")
if ("deny")
query_contents = "UPDATE ss13_player_linking SET status = :new_status:, deleted_at = NOW() WHERE id = :id:"
query_details["new_status"] = "rejected"
query_details["id"] = request_id
feedback_message = SPAN_WARNING("<b>Link request rejected!</b>")
else
to_chat(src, SPAN_WARNING("Invalid command sent."))
return
var/DBQuery/update_query = GLOB.dbcon.NewQuery(query_contents)
update_query.Execute(query_details)
if (href_list["linkingaction"] == "accept" && alert("To complete the process, you have to visit the website. Do you want to do so now?",,"Yes","No") == "Yes")
process_webint_link("interface/user/link")
to_chat(src, feedback_message)
check_linking_requests()
return
if (href_list["routeWebInt"])
process_webint_link(href_list["routeWebInt"], href_list["routeAttributes"])
return
// JSlink switch.
if (href_list["JSlink"])
switch (href_list["JSlink"])
// Warnings panel for each user.
if ("warnings")
src.warnings_check()
// Linking request handling.
if ("linking")
src.check_linking_requests()
// Notification dismissal from the server greeting.
if ("dismiss")
if (href_list["notification"])
var/datum/client_notification/a = locate(href_list["notification"])
if (!QDELETED(a))
a.dismiss()
// Forum link from various panels.
if ("github")
if (!GLOB.config.githuburl)
to_chat(src, SPAN_DANGER("GitHub URL not set in the config. Unable to open the site."))
else if (alert("This will open the GitHub page in your browser. Are you sure?",, "Yes", "No") == "Yes")
if (href_list["pr"])
var/pr_link = "[GLOB.config.githuburl]pull/[href_list["pr"]]"
send_link(src, pr_link)
else
send_link(src, GLOB.config.githuburl)
// Forum link from various panels.
if ("forums")
src.forum()
// Wiki link from various panels.
if ("wiki")
src.wiki(sub_page = (href_list["wiki_page"] || null))
// Web interface href link from various panels.
if ("webint")
src.open_webint()
return
if (href_list["view_jobban"])
var/reason = jobban_isbanned(ckey, href_list["view_jobban"])
if (!reason)
to_chat(src, SPAN_NOTICE("You do not appear jobbanned from this job. If you are still stopped from entering the role however, please adminhelp."))
return
var/data = "<center>Jobbanned from: <b>[href_list["view_jobban"]]</b><br>"
data += "Reason:<br>"
data += reason
data += "</center>"
show_browser(src, data, "window=jobban_reason;size=400x300")
return
if (hsrc)
var/datum/real_src = hsrc
if(QDELETED(real_src))
return
..() //redirect to hsrc.Topic()
/proc/client_by_ckey(ckey)
return GLOB.directory[ckey]
/client/proc/automute_by_time(mute_type)
if (!last_message_time)
return FALSE
if (GLOB.config.macro_trigger && (REALTIMEOFDAY - last_message_time) < GLOB.config.macro_trigger)
spam_alert = min(spam_alert + 1, 4)
LOG_DEBUG("SPAM_PROTECT: [src] tripped macro-trigger. Now at alert [spam_alert].")
if (spam_alert > 3 && !(prefs.muted & mute_type))
cmd_admin_mute(src.mob, mute_type, 1)
to_chat(src, SPAN_DANGER("You have tripped the macro-trigger. An auto-mute was applied."))
LOG_DEBUG("SPAM_PROTECT: [src] tripped macro-trigger, now muted.")
return TRUE
else
spam_alert = max(0, spam_alert - 1)
return FALSE
/client/proc/automute_by_duplicate(message, mute_type)
if (!last_message)
return FALSE
if (last_message == message)
last_message_count++
LOG_DEBUG("SPAM_PROTECT: [src] tripped duplicate message filter. Last message count: [last_message_count]. Message: [message]")
if(last_message_count >= SPAM_TRIGGER_AUTOMUTE)
to_chat(src, SPAN_DANGER("You have exceeded the spam filter limit for identical messages. An auto-mute was applied."))
cmd_admin_mute(mob, mute_type, 1)
LOG_DEBUG("SPAM_PROTECT: [src] tripped duplicate message filter, now muted.")
last_message_count = 0
return TRUE
else if(last_message_count >= SPAM_TRIGGER_WARNING)
to_chat(src, SPAN_DANGER("You are nearing the spam filter limit for identical messages."))
LOG_DEBUG("SPAM_PROTECT: [src] tripped duplicate message filter, now warned.")
return FALSE
else
last_message_count = 0
return FALSE
/client/proc/handle_spam_prevention(message, mute_type)
. = FALSE
if (prefs.muted & mute_type)
to_chat(src, SPAN_WARNING("You are muted and cannot send messages."))
. = TRUE
else if (GLOB.config.automute_on && !holder && length(message))
. = . || automute_by_time(mute_type)
. = . || automute_by_duplicate(message, mute_type)
last_message_time = REALTIMEOFDAY
last_message = message
//This stops files larger than UPLOAD_LIMIT being sent from client to server via input(), client.Import() etc.
/client/AllowUpload(filename, filelength)
if(filelength > UPLOAD_LIMIT)
to_chat(src, SPAN_WARNING("Error: AllowUpload(): File Upload too large. Upload Limit: [UPLOAD_LIMIT/1024]KiB."))
return 0
/* //Don't need this at the moment. But it's here if it's needed later.
//Helps prevent multiple files being uploaded at once. Or right after eachother.
var/time_to_wait = fileaccess_timer - world.time
if(time_to_wait > 0)
to_chat(src, SPAN_WARNING("Error: AllowUpload(): Spam prevention. Please wait [round(time_to_wait/10)] seconds."))
return 0
fileaccess_timer = world.time + FTPDELAY */
return 1
///////////
//CONNECT//
///////////
/client/New(TopicData)
TopicData = null //Prevent calls to client.Topic from connect
if(!(connection in list("seeker", "web"))) //Invalid connection type.
return null
if(byond_version < MIN_CLIENT_VERSION) //Out of date client.
return null
if(!(GLOB.config.guests_allowed || GLOB.config.external_auth) && IsGuestKey(key))
alert(src,"This server doesn't allow guest accounts to play. Please go to http://www.byond.com/ and register for a key.","Guest","OK")
del(src)
return
dir = NORTH
GLOB.clients += src
GLOB.directory[ckey] = src
connection_time = world.time
connection_realtime = world.realtime
connection_timeofday = world.timeofday
if (LAZYLEN(GLOB.config.client_blacklist_version))
var/client_version = "[byond_version].[byond_build]"
if (client_version in GLOB.config.client_blacklist_version)
to_chat_immediate(src, SPAN_DANGER("<b>Your version of BYOND is explicitly blacklisted from joining this server!</b>"))
to_chat_immediate(src, "Your current version: [client_version].")
to_chat_immediate(src, "Visit http://www.byond.com/download/ to download a different version. Try looking for a newer one, or go one lower.")
log_access("Failed Login: [key] [computer_id] [address] - Blacklisted BYOND version: [client_version].")
del(src)
return 0
// Instantiate stat panel
stat_panel = new(src, "statbrowser")
stat_panel.subscribe(src, PROC_REF(on_stat_panel_message))
// Instantiate tgui panel
tgui_panel = new(src, "browseroutput")
tgui_say = new(src, "tgui_say")
if(IsGuestKey(key) && GLOB.config.external_auth)
src.authed = FALSE
var/mob/abstract/unauthed/m = new()
m.client = src
src.InitPrefs() //Init some default prefs
m.LateLogin()
return m
//Do auth shit
else
. = ..()
src.InitClient()
src.InitPrefs()
mob.LateLogin()
// Initialize stat panel
stat_panel.initialize(
inline_html = file("html/statbrowser.html"),
inline_js = file("html/statbrowser.js"),
inline_css = file("html/statbrowser.css"),
)
addtimer(CALLBACK(src, PROC_REF(check_panel_loaded)), 30 SECONDS)
// Initialize tgui panel
tgui_panel.initialize()
tgui_say.initialize()
// Forcibly enable hardware-accelerated graphics, as we need them for the lighting overlays.
winset(src, null, "command=\".configure graphics-hwmode on\"")
send_resources()
if(!winexists(src, "asset_cache_browser")) // The client is using a custom skin, tell them.
to_chat(src, SPAN_WARNING("Unable to access asset cache browser, if you are using a custom skin file, please allow DS to download the updated version, if you are not, then make a bug report. This is not a critical issue but can cause issues with resource downloading, as it is impossible to know when extra resources arrived to you."))
Master.UpdateTickRate()
/client/proc/InitPrefs()
SHOULD_NOT_SLEEP(TRUE)
//preferences datum - also holds some persistant data for the client (because we may as well keep these datums to a minimum)
prefs = preferences_datums[ckey]
if(!prefs)
prefs = new /datum/preferences(src)
preferences_datums[ckey] = prefs
prefs.gather_notifications(src)
prefs.client = src // Safety reasons here.
prefs.last_ip = address //these are gonna be used for banning
prefs.last_id = computer_id //these are gonna be used for banning
if (byond_version >= 511 && prefs.clientfps)
fps = prefs.clientfps
if(prefs.toggles_secondary & FULLSCREEN_MODE)
toggle_fullscreen(TRUE)
/client/proc/InitClient()
SHOULD_NOT_SLEEP(TRUE)
to_chat_immediate(src, SPAN_ALERT("If the title screen is black, resources are still downloading. Please be patient until the title screen appears."))
var/local_connection = (GLOB.config.auto_local_admin && !GLOB.config.use_forumuser_api && (isnull(address) || localhost_addresses[address]))
// Automatic admin rights for people connecting locally.
// Concept stolen from /tg/ with deepest gratitude.
// And ported from Nebula with love.
if(local_connection && !admin_datums[ckey])
new /datum/admins("Local Host", R_ALL, ckey)
//Admin Authorisation
holder = admin_datums[ckey]
if(holder)
GLOB.staff += src
holder.owner = src
log_client_to_db()
if (byond_version < GLOB.config.client_error_version)
to_chat_immediate(src, SPAN_DANGER("<b>Your version of BYOND is too old!</b>"))
to_chat_immediate(src, GLOB.config.client_error_message)
to_chat_immediate(src, "Your version: [byond_version].")
to_chat_immediate(src, "Required version: [GLOB.config.client_error_version] or later.")
to_chat_immediate(src, "Visit http://www.byond.com/download/ to get the latest version of BYOND.")
if (holder)
to_chat_immediate(src, "Admins get a free pass. However, <b>please</b> update your BYOND as soon as possible. Certain things may cause crashes if you play with your present version.")
else
log_access("Failed Login: [key] [computer_id] [address] - Outdated BYOND major version: [byond_version].")
del(src)
return 0
// New player, and we don't want any.
if (!holder)
if (GLOB.config.access_deny_new_players && player_age == -1)
log_access("Failed Login: [key] [computer_id] [address] - New player attempting connection during panic bunker.")
message_admins("Failed Login: [key] [computer_id] [address] - New player attempting connection during panic bunker.")
to_chat_immediate(src, SPAN_DANGER("Apologies, but the server is currently not accepting connections from never before seen players."))
del(src)
return 0
// Check if the account is too young.
if (GLOB.config.access_deny_new_accounts != -1 && account_age != -1 && account_age <= GLOB.config.access_deny_new_accounts)
log_access("Failed Login: [key] [computer_id] [address] - Account too young to play. [account_age] days.")
message_admins("Failed Login: [key] [computer_id] [address] - Account too young to play. [account_age] days.")
to_chat_immediate(src, SPAN_DANGER("Apologies, but the server is currently not accepting connections from BYOND accounts this young."))
del(src)
return 0
if(!tooltips)
tooltips = new /datum/tooltip(src)
if(holder)
add_admin_verbs()
check_ip_intel()
fetch_unacked_warning_count()
is_initialized = TRUE
//////////////
//DISCONNECT//
//////////////
/client/Del()
if(!gc_destroyed)
gc_destroyed = world.time
if (!QDELING(src))
stack_trace("Client does not purport to be QDELING, this is going to cause bugs in other places!")
Destroy()
return ..()
/client/Destroy(force)
GLOB.ticket_panels -= src
GLOB.staff -= src
GLOB.directory -= ckey
GLOB.clients -= src
if(holder)
holder.owner = null
GLOB.staff -= src
SSping.currentrun -= src
QDEL_NULL(tooltips)
Master.UpdateTickRate()
..() //Even though we're going to be hard deleted there are still some things that want to know the destroy is happening
return QDEL_HINT_HARDDEL_NOW
// here because it's similar to below
// Returns null if no DB connection can be established, or -1 if the requested key was not found in the database
/proc/get_player_age(key)
if(!establish_db_connection(GLOB.dbcon))
return null
var/DBQuery/query = GLOB.dbcon.NewQuery("SELECT datediff(Now(),firstseen) as age FROM ss13_player WHERE ckey = :ckey:")
query.Execute(list("ckey"=ckey(key)))
if(query.NextRow())
return text2num(query.item[1])
else
return -1
/client/proc/log_client_to_db()
set waitfor = FALSE
if (IsGuestKey(src.key))
return
if(!establish_db_connection(GLOB.dbcon))
return
var/DBQuery/query = GLOB.dbcon.NewQuery("SELECT datediff(Now(),firstseen) as age, whitelist_status, account_join_date, DATEDIFF(NOW(), account_join_date) FROM ss13_player WHERE ckey = :ckey:")
if(!query.Execute(list("ckey"=ckey(key))))
return
var/found = 0
player_age = 0 // New players won't have an entry so knowing we have a connection we set this to zero to be updated if their is a record.
if (query.NextRow())
found = 1
player_age = text2num(query.item[1])
whitelist_status = text2num(query.item[2])
account_join_date = query.item[3]
account_age = text2num(query.item[4])
if (!account_age)
account_join_date = sanitizeSQL(findJoinDate())
if (!account_join_date)
account_age = -1
else
var/DBQuery/query_datediff = GLOB.dbcon.NewQuery("SELECT DATEDIFF(NOW(), [account_join_date])")
if (!query_datediff.Execute())
return
if (query_datediff.NextRow())
account_age = text2num(query_datediff.item[1])
var/DBQuery/query_ip = GLOB.dbcon.NewQuery("SELECT ckey FROM ss13_player WHERE ip = '[address]'")
query_ip.Execute()
related_accounts_ip = ""
while(query_ip.NextRow())
related_accounts_ip += "[query_ip.item[1]], "
break
var/DBQuery/query_cid = GLOB.dbcon.NewQuery("SELECT ckey FROM ss13_player WHERE computerid = '[computer_id]'")
query_cid.Execute()
related_accounts_cid = ""
while(query_cid.NextRow())
related_accounts_cid += "[query_cid.item[1]], "
break
var/admin_rank = "Player"
if(src.holder)
admin_rank = src.holder.rank
if(found)
//Player already identified previously, we need to just update the 'lastseen', 'ip', 'computer_id', 'byond_version' and 'byond_build' variables
var/DBQuery/query_update = GLOB.dbcon.NewQuery("UPDATE ss13_player SET lastseen = Now(), ip = :ip:, computerid = :computerid:, lastadminrank = :lastadminrank:, account_join_date = :account_join_date:, byond_version = :byond_version:, byond_build = :byond_build: WHERE ckey = :ckey:")
query_update.Execute(list("ckey"=ckey(key),"ip"=src.address,"computerid"=src.computer_id,"lastadminrank"=admin_rank,"account_join_date"=account_join_date,"byond_version"=byond_version,"byond_build"=byond_build))
else if (!GLOB.config.access_deny_new_players)
//New player!! Need to insert all the stuff
var/DBQuery/query_insert = GLOB.dbcon.NewQuery("INSERT INTO ss13_player (ckey, firstseen, lastseen, ip, computerid, lastadminrank, account_join_date, byond_version, byond_build) VALUES (:ckey:, Now(), Now(), :ip:, :computerid:, :lastadminrank:, :account_join_date:, :byond_version:, :byond_build:)")
query_insert.Execute(list("ckey"=ckey(key),"ip"=src.address,"computerid"=src.computer_id,"lastadminrank"=admin_rank,"account_join_date"=account_join_date,"byond_version"=byond_version,"byond_build"=byond_build))
else
// Flag as -1 to know we have to kiiick them.
player_age = -1
if (!account_join_date)
account_join_date = "Error"
#undef UPLOAD_LIMIT
#undef MIN_CLIENT_VERSION
//checks if a client is afk
//3000 frames = 5 minutes
/client/proc/is_afk(duration=3000)
if(inactivity > duration) return inactivity
return 0
/// Send resources to the client.
/// Sends both game resources and browser assets.
/client/proc/send_resources()
#if (PRELOAD_RSC == 0)
var/static/next_external_rsc = 0
var/list/external_rsc_urls = GLOB.config.external_rsc_urls
if(length(external_rsc_urls))
next_external_rsc = WRAP(next_external_rsc+1, 1, external_rsc_urls.len+1)
preload_rsc = external_rsc_urls[next_external_rsc]
#endif
spawn (10) //removing this spawn causes all clients to not get verbs. (this can't be addtimer because these assets may be needed before the mc inits)
//load info on what assets the client has
src << browse('code/modules/asset_cache/validate_assets.html', "window=asset_cache_browser")
//Precache the client with all other assets slowly, so as to not block other browse() calls
if (GLOB.config.asset_simple_preload)
addtimer(CALLBACK(SSassets.transport, TYPE_PROC_REF(/datum/asset_transport, send_assets_slow), src, SSassets.transport.preload), 5 SECONDS)
/mob/proc/MayRespawn()
return 0
/client/proc/MayRespawn()
if(mob)
return mob.MayRespawn()
// Something went wrong, client is usually kicked or transfered to a new mob at this point
return 0
/client/verb/character_setup()
set name = "Character Setup"
set category = "Preferences"
if(prefs)
prefs.ShowChoices(usr)
/client/verb/toggle_fullscreen_preference()
set name = "Toggle Fullscreen Preference"
set category = "Preferences"
set desc = "Toggles whether the game window will be true fullscreen or normal."
prefs.toggles_secondary ^= FULLSCREEN_MODE
prefs.save_preferences()
toggle_fullscreen(prefs.toggles_secondary & FULLSCREEN_MODE)
/client/verb/toggle_accent_tag_text()
set name = "Toggle Accent Tag Text"
set category = "Preferences"
set desc = "Toggles whether accents will be shown as text or images.."
to_chat(usr, SPAN_NOTICE("You toggle the accent tag text [(prefs?.toggles_secondary & ACCENT_TAG_TEXT) ? "off" : "on"]."))
prefs.toggles_secondary ^= ACCENT_TAG_TEXT
prefs.save_preferences()
/client/proc/toggle_fullscreen(new_value)
if(new_value)
winset(src, "mainwindow", "is-maximized=false;can-resize=false;titlebar=false;menu=menu")
winset(src, "mainwindow.mainvsplit", "pos=0x0")
else
winset(src, "mainwindow", "is-maximized=false;can-resize=true;titlebar=true;menu=menu")
winset(src, "mainwindow.mainvsplit", "pos=3x0")
winset(src, "mainwindow", "is-maximized=true")
/client/proc/apply_fps(var/client_fps)
if(world.byond_version >= 511 && byond_version >= 511 && client_fps >= 0 && client_fps <= 1000)
vars["fps"] = prefs.clientfps
//I honestly can't find a good place for this atm.
//If the webint interaction gets more features, I'll move it. - Skull132
/client/verb/view_linking_requests()
set name = "View Linking Requests"
set category = "OOC"
check_linking_requests()
/client/proc/check_linking_requests()
if (!GLOB.config.webint_url || !GLOB.config.sql_enabled)
return
if (!establish_db_connection(GLOB.dbcon))
return
var/list/requests = list()
var/list/query_details = list("ckey" = ckey)
var/DBQuery/select_query = GLOB.dbcon.NewQuery("SELECT id, forum_id, forum_username, datediff(Now(), created_at) as request_age FROM ss13_player_linking WHERE status = 'new' AND player_ckey = :ckey: AND deleted_at IS NULL")
select_query.Execute(query_details)
while (select_query.NextRow())
requests.Add(list(list("id" = text2num(select_query.item[1]), "forum_id" = text2num(select_query.item[2]), "forum_username" = select_query.item[3], "request_age" = select_query.item[4])))
if (!requests.len)
return
var/dat = "<center><b>You have active requests to check!</b></center>"
var/i = 0
for (var/list/request in requests)
i++
var/linked_forum_name = null
if (GLOB.config.forumurl)
var/route_attributes = list2params(list("mode" = "viewprofile", "u" = request["forum_id"]))
linked_forum_name = "<a href='byond://?src=[REF(src)];routeWebInt=forums/members;routeAttributes=[route_attributes]'>[request["forum_username"]]</a>"
dat += "<hr>"
dat += "#[i] - Request to link your current key ([key]) to a forum account with the username of: <b>[linked_forum_name ? linked_forum_name : request["forum_username"]]</b>.<br>"
dat += "The request is [request["request_age"]] days old.<br>"
dat += "OPTIONS: <a href='byond://?src=[REF(src)];linkingrequest=[request["id"]];linkingaction=accept'>Accept Request</a> | <a href='byond://?src=[REF(src)];linkingrequest=[request["id"]];linkingaction=deny'>Deny Request</a>"
src << browse(dat, "window=LinkingRequests")
return
/client/proc/gather_linking_requests()
if (!GLOB.config.webint_url || !GLOB.config.sql_enabled)
return
if (!establish_db_connection(GLOB.dbcon))
return
var/DBQuery/select_query = GLOB.dbcon.NewQuery("SELECT COUNT(*) AS request_count FROM ss13_player_linking WHERE status = 'new' AND player_ckey = :ckey: AND deleted_at IS NULL")
select_query.Execute(list("ckey" = ckey))
if (select_query.NextRow())
if (text2num(select_query.item[1]) > 0)
return "You have [select_query.item[1]] account linking requests pending review. Click <a href='?JSlink=linking;notification=:src_ref'>here</a> to see them!"
return null
/client/proc/process_webint_link(var/route, var/attributes)
if (!route)
return
var/linkURL = ""
switch (route)
if ("forums/members")
if (!webint_validate_attributes(list("mode", "u"), attributes_text = attributes))
return
if (!GLOB.config.forumurl)
return
linkURL = "[GLOB.config.forumurl]memberlist.php?"
linkURL += attributes
if ("interface/user/link")
if (!GLOB.config.webint_url)
return
linkURL = "[GLOB.config.webint_url]user/link"
if ("interface/login/sso_server")
//This also validates the attributes as it runs
var/new_attributes = webint_start_singlesignon(src, attributes)
if (!new_attributes)
return
if (!GLOB.config.webint_url)
return
linkURL = "[GLOB.config.webint_url]login/sso_server?"
linkURL += new_attributes
else
LOG_DEBUG("Unrecognized process_webint_link() call used. Route sent: '[route]'.")
return
send_link(src, linkURL)
return
/client/proc/check_ip_intel()
set waitfor = 0 //we sleep when getting the intel, no need to hold up the client connection while we sleep
if (GLOB.config.ipintel_email)
var/datum/ipintel/res = get_ip_intel(address)
if (GLOB.config.ipintel_rating_kick && res.intel >= GLOB.config.ipintel_rating_kick)
if (!holder)
message_admins("Proxy Detection: [key_name_admin(src)] IP intel rated [res.intel*100]% likely to be a proxy/VPN. They are being kicked because of this.")
log_admin("Proxy Detection: [key_name_admin(src)] IP intel rated [res.intel*100]% likely to be a proxy/VPN. They are being kicked because of this.")
to_chat(src, SPAN_DANGER("Usage of proxies is not permitted by the rules. You are being kicked because of this."))
del(src)
else
message_admins("Proxy Detection: [key_name_admin(src)] IP intel rated [res.intel*100]% likely to be a Proxy/VPN.")
else if (res.intel >= GLOB.config.ipintel_rating_bad)
message_admins("Proxy Detection: [key_name_admin(src)] IP intel rated [res.intel*100]% likely to be a Proxy/VPN.")
ip_intel = res.intel
/client/proc/findJoinDate()
var/list/http = world.Export("http://byond.com/members/[ckey]?format=text")
if(!http)
LOG_DEBUG("ACCESS CONTROL: Failed to connect to byond age check for [ckey]")
return
var/F = file2text(http["CONTENT"])
if(F)
var/regex/R = regex("joined = \"(\\d{4}-\\d{2}-\\d{2})\"")
if(R.Find(F))
. = R.group[1]
else
CRASH("Age check regex failed for [src.ckey]")
/client/Click(atom/object, atom/location, control, params)
SEND_SIGNAL(src, COMSIG_CLIENT_CLICK, object, location, control, params, usr)
..()
/client/MouseDrag(src_object, over_object, src_location, over_location, src_control, over_control, params)
var/list/modifiers = params2list(params)
if(!drag_start) // If we're just starting to drag
drag_start = world.time
drag_details = modifiers.Copy()
. = ..()
if(over_object)
if(autofire_aiming_at[1])
autofire_aiming_at[1] = over_object
autofire_aiming_at[2] = params
var/mob/living/M = mob
if(istype(M) && !M.incapacitated())
var/obj/item/I = M.get_active_hand()
if(istype(I, /obj/item/rfd/mining) && isturf(over_object))
var/proximity = M.Adjacent(over_object)
var/obj/item/rfd/mining/RFDM = I
RFDM.afterattack(over_object, M, proximity, params, FALSE)
CHECK_TICK
/client/MouseDrop(atom/src_object, atom/over_object, atom/src_location, atom/over_location, src_control, over_control, params)
SHOULD_NOT_OVERRIDE(TRUE)
..()
drag_start = 0
drag_details = null
/client/MouseDown(datum/object, location, control, params)
if(QDELETED(object)) //Yep, you can click on qdeleted things before they have time to nullspace. Fun.
return
SEND_SIGNAL(src, COMSIG_CLIENT_MOUSEDOWN, object, location, control, params)
var/obj/item/I = mob.get_active_hand()
var/obj/O = object
if(istype(I, /obj/item/gun) && !mob.in_throw_mode)
var/obj/item/gun/G = I
// check if our gun can even autofire
var/can_autofire = G.can_autofire(O, location, params)
if(!can_autofire)
return
// check if the object we're clicking is auto clickable
var/can_autoclick_object = O.is_auto_clickable()
if(!can_autoclick_object)
return
// check if safety should block the shot
var/not_on_safety = mob.a_intent == I_HURT || (!G.safety())
if(!not_on_safety)
return
// check that we're not shooting anything on our person
var/object_not_on_us = O.loc != mob
if(!object_not_on_us)
return
// check whether we're putting it in a storage item / table / locker
var/object_not_storage_item = TRUE
var/is_adjacent_to_object = get_last_atom_before_turf(G) == mob
if(!is_adjacent_to_object)
var/distance_to_object = get_dist(mob, location)
is_adjacent_to_object = distance_to_object <= 1
if(is_adjacent_to_object) // if we're not next to it, blast it
var/list/storage_types = list(
/obj/item/storage,
/obj/structure/table,
/obj/structure/closet
)
var/is_storage_item = is_type_in_list(O, storage_types)
if(!is_storage_item)
is_storage_item = locate(/obj/item/storage) in O // some items will have storage within themselves
object_not_storage_item = !is_storage_item
if(!object_not_storage_item)
return
autofire_aiming_at[1] = O
autofire_aiming_at[2] = params
var/accuracy_dec = 0
while(autofire_aiming_at[1])
// stop shooting if we drop our gun
if(G.loc != mob)
break
G.Fire(autofire_aiming_at[1], mob, autofire_aiming_at[2], (get_dist(mob, location) <= 1), FALSE, accuracy_dec)
mob.set_dir(get_dir(mob, autofire_aiming_at[1]))
accuracy_dec = min(accuracy_dec + 0.25, 2)
sleep(G.fire_delay)
/client/MouseUp(object, location, control, params)
if(SEND_SIGNAL(src, COMSIG_CLIENT_MOUSEUP, object, location, control, params) & COMPONENT_CLIENT_MOUSEUP_INTERCEPT)
src = src //This doesn't do shit, when you implement click interception change this
autofire_aiming_at[1] = null
/atom/proc/is_auto_clickable()
return TRUE
/atom/movable/screen/is_auto_clickable()
return FALSE
/atom/movable/screen/click_catcher/is_auto_clickable()
return TRUE
/**
* Handles incoming messages from the stat-panel TGUI.
*/
/client/proc/on_stat_panel_message(type, payload)
switch(type)
if("Update-Verbs")
init_verbs()
if("Remove-Tabs")
panel_tabs -= payload["tab"]
if("Send-Tabs")
panel_tabs |= payload["tab"]
if("Reset-Tabs")
panel_tabs = list()
if("Set-Tab")
stat_tab = payload["tab"]
SSstatpanels.immediate_send_stat_data(src)
/// compiles a full list of verbs and sends it to the browser
/client/proc/init_verbs()
var/list/verblist = list()
var/list/verbstoprocess = verbs.Copy()
if(mob)
verbstoprocess += mob.verbs
for(var/atom/movable/thing as anything in mob.contents)
verbstoprocess += thing.verbs
panel_tabs.Cut() // panel_tabs get reset in init_verbs on JS side anyway
for(var/procpath/verb_to_init as anything in verbstoprocess)
if(!verb_to_init)
continue
if(verb_to_init.hidden)
continue
if(!istext(verb_to_init.category))
continue
panel_tabs |= verb_to_init.category
verblist[++verblist.len] = list(verb_to_init.category, verb_to_init.name)
src.stat_panel.send_message("init_verbs", list(panel_tabs = panel_tabs, verblist = verblist))
/client/proc/check_panel_loaded()
if(stat_panel.is_ready())
return
to_chat(src, SPAN_DANGER("Statpanel failed to load, click <a href='?src=[REF(src)];reload_statbrowser=1'>here</a> to reload the panel "))