mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-29 19:11:51 +00:00
* Refactors admin event setup (again) * Update pirate_event.dm --------- Co-authored-by: NamelessFairy <40036527+NamelessFairy@users.noreply.github.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
103 lines
4.1 KiB
Plaintext
103 lines
4.1 KiB
Plaintext
/datum/round_event_control/carp_migration
|
|
name = "Carp Migration"
|
|
typepath = /datum/round_event/carp_migration
|
|
weight = 15
|
|
min_players = 12
|
|
earliest_start = 10 MINUTES
|
|
max_occurrences = 6
|
|
category = EVENT_CATEGORY_ENTITIES
|
|
description = "Summons a school of space carp."
|
|
min_wizard_trigger_potency = 0
|
|
max_wizard_trigger_potency = 3
|
|
admin_setup = list(/datum/event_admin_setup/carp_migration)
|
|
|
|
/datum/round_event_control/carp_migration/New()
|
|
. = ..()
|
|
if(!HAS_TRAIT(SSstation, STATION_TRAIT_CARP_INFESTATION))
|
|
return
|
|
weight *= 3
|
|
max_occurrences *= 2
|
|
earliest_start *= 0.5
|
|
|
|
/datum/round_event/carp_migration
|
|
announce_when = 3
|
|
start_when = 50
|
|
/// Set to true when we announce something to ghosts, to prevent duplicate announcements
|
|
var/hasAnnounced = FALSE
|
|
/// Most common mob type to spawn, must be a child of /mob/living/basic/carp
|
|
var/carp_type = /mob/living/basic/carp
|
|
/// Rarer mob type to spawn, must also be a child of /mob/living/basic/carp. If one of these is created, it will take priority to show ghosts.
|
|
var/boss_type = /mob/living/basic/carp/mega
|
|
/// What to describe detecting near the station
|
|
var/fluff_signal = "Unknown biological entities"
|
|
/// Associated lists of z level to a list of points to travel to, so that grouped fish move to the same places
|
|
var/list/z_migration_paths = list()
|
|
|
|
/datum/round_event/carp_migration/setup()
|
|
start_when = rand(40, 60)
|
|
|
|
/datum/round_event/carp_migration/announce(fake)
|
|
priority_announce("[fluff_signal] have been detected near [station_name()], please stand-by.", "Lifesign Alert")
|
|
|
|
/datum/round_event/carp_migration/start()
|
|
// Stores the most recent fish we spawn
|
|
var/mob/living/basic/carp/fish
|
|
|
|
for(var/obj/effect/landmark/carpspawn/spawn_point in GLOB.landmarks_list)
|
|
if(prob(95))
|
|
fish = new carp_type(spawn_point.loc)
|
|
else
|
|
fish = new boss_type(spawn_point.loc)
|
|
fishannounce(fish) //Prefer to announce the megacarps over the regular fishies
|
|
|
|
var/z_level_key = "[spawn_point.z]"
|
|
if (!z_migration_paths[z_level_key])
|
|
z_migration_paths[z_level_key] = pick_carp_migration_points(z_level_key)
|
|
if (z_migration_paths[z_level_key]) // Still possible we failed to set anything here if we're unlucky
|
|
fish.migrate_to(z_migration_paths[z_level_key])
|
|
|
|
fishannounce(fish)
|
|
|
|
/// Generate two locations for carp to travel to, one in the station and one off in space
|
|
/datum/round_event/carp_migration/proc/pick_carp_migration_points(z_level_key)
|
|
var/list/valid_areas = list()
|
|
var/list/station_areas = GLOB.the_station_areas
|
|
for (var/area/potential_area as anything in SSmapping.areas_in_z[z_level_key])
|
|
if (!is_type_in_list(potential_area, station_areas))
|
|
continue
|
|
valid_areas += potential_area
|
|
|
|
var/turf/station_turf = get_safe_random_station_turf(valid_areas)
|
|
if (!station_turf)
|
|
return list()
|
|
var/turf/exit_turf = get_edge_target_turf(station_turf, pick(GLOB.alldirs))
|
|
return list(WEAKREF(station_turf), WEAKREF(exit_turf))
|
|
|
|
/datum/round_event/carp_migration/proc/fishannounce(atom/fish)
|
|
if (!hasAnnounced)
|
|
announce_to_ghosts(fish) //Only anounce the first fish
|
|
hasAnnounced = TRUE
|
|
|
|
/datum/event_admin_setup/carp_migration
|
|
/// Admin set list of turfs for carp to travel to for each z level
|
|
var/list/targets_per_z = list()
|
|
|
|
/datum/event_admin_setup/carp_migration/prompt_admins()
|
|
targets_per_z = list()
|
|
if (tgui_alert(usr, "Direct carp to your current location? Only applies to your current Z level.", "Carp Direction", list("Yes", "No")) != "Yes")
|
|
return
|
|
record_admin_location()
|
|
while (tgui_alert(usr, "Add additional locations? Only applies to your current Z level.", "More Carp Direction", list("Yes", "No")) == "Yes")
|
|
record_admin_location()
|
|
|
|
/// Stores the admin's current location corresponding to the z level of that location
|
|
/datum/event_admin_setup/carp_migration/proc/record_admin_location()
|
|
var/turf/aimed_turf = get_turf(usr)
|
|
var/z_level_key = "[aimed_turf.z]"
|
|
if (!targets_per_z[z_level_key])
|
|
targets_per_z[z_level_key] = list()
|
|
targets_per_z[z_level_key] += WEAKREF(aimed_turf)
|
|
|
|
/datum/event_admin_setup/carp_migration/apply_to_event(datum/round_event/carp_migration/event)
|
|
event.z_migration_paths = targets_per_z
|