mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-23 08:41:43 +00:00
Also makes the mode selection interface far less tedious/painful Adds unsimulated turf overriding, and admin logging Temporary commit for storing the sdql buildmode Adds extra documentation also requires a path to be selected for "advanced" and "fill" modes, now Spaces out mode switch buttons nicer removes need for debug rights to do a fill with mob paths Adds a bunch of extra fancy paths Fox Changes pt 1 Backports /tg/station changes Fixes a double-tap issue with dclick handling of certain mobs Also no longer shows the "selection canceled" if you haven't selected a region for the buildmode that supports region selection Updates buildmode stuff
87 lines
2.5 KiB
Plaintext
87 lines
2.5 KiB
Plaintext
/datum/buildmode_mode
|
|
var/key = "oops"
|
|
|
|
var/datum/click_intercept/buildmode/BM
|
|
|
|
var/use_corner_selection = FALSE
|
|
var/processing_selection = FALSE
|
|
var/list/preview
|
|
var/turf/cornerA
|
|
var/turf/cornerB
|
|
|
|
/datum/buildmode_mode/New(datum/click_intercept/buildmode/newBM)
|
|
BM = newBM
|
|
preview = list()
|
|
return ..()
|
|
|
|
/datum/buildmode_mode/Destroy()
|
|
Reset()
|
|
return ..()
|
|
|
|
/datum/buildmode_mode/proc/enter_mode(datum/click_intercept/buildmode/BM)
|
|
return
|
|
|
|
/datum/buildmode_mode/proc/exit_mode(datum/click_intercept/buildmode/BM)
|
|
return
|
|
|
|
/datum/buildmode_mode/proc/get_button_iconstate()
|
|
return "buildmode_[key]"
|
|
|
|
/datum/buildmode_mode/proc/show_help(mob/user)
|
|
CRASH("No help defined, yell at a coder")
|
|
to_chat(user, "<span class='warning'>There is no help defined for this mode, this is a bug.</span>")
|
|
|
|
/datum/buildmode_mode/proc/change_settings(mob/user)
|
|
to_chat(user, "<span class='warning'>There is no configuration available for this mode</span>")
|
|
|
|
/datum/buildmode_mode/proc/Reset()
|
|
deselect_region()
|
|
|
|
/datum/buildmode_mode/proc/select_tile(turf/T, corner_to_select)
|
|
var/overlaystate
|
|
BM.holder.images -= preview
|
|
switch(corner_to_select)
|
|
if(AREASELECT_CORNERA)
|
|
overlaystate = "greenOverlay"
|
|
if(AREASELECT_CORNERB)
|
|
overlaystate = "blueOverlay"
|
|
preview += image('icons/turf/overlays.dmi', T, overlaystate)
|
|
BM.holder.images += preview
|
|
return T
|
|
|
|
/datum/buildmode_mode/proc/highlight_region(region)
|
|
BM.holder.images -= preview
|
|
for(var/t in region)
|
|
preview += image('icons/turf/overlays.dmi', T, "redOverlay")
|
|
BM.holder.images += preview
|
|
|
|
/datum/buildmode_mode/proc/deselect_region()
|
|
BM.holder.images -= preview
|
|
QDEL_LIST(preview)
|
|
cornerA = null
|
|
cornerB = null
|
|
|
|
/datum/buildmode_mode/proc/handle_click(user, params, object)
|
|
var/list/pa = params2list(params)
|
|
var/left_click = pa.Find("left")
|
|
if(use_corner_selection)
|
|
if(left_click)
|
|
if(!cornerA)
|
|
cornerA = select_tile(get_turf(object), AREASELECT_CORNERA)
|
|
return
|
|
else if(!cornerB)
|
|
cornerB = select_tile(get_turf(object), AREASELECT_CORNERB)
|
|
to_chat(user, "<span class='boldwarning'>Region selected, if you're happy with your selection left click again, otherwise right click.</span>")
|
|
return
|
|
if(processing_selection)
|
|
return
|
|
processing_selection = TRUE
|
|
handle_selected_region(user, params)
|
|
processing_selection = FALSE
|
|
deselect_region()
|
|
else if(cornerA || cornerB)
|
|
to_chat(user, "<span class='notice'>Region selection canceled!</span>")
|
|
deselect_region()
|
|
|
|
/datum/buildmode_mode/proc/handle_selected_region(mob/user, params)
|
|
return |