mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-04-05 03:41:50 +01:00
* 'optimizes' space transitions by like 0.06 seconds, makes them easier to read tho, so that's an upside * ''''optimizes'''' parsed map loading I'm honestly not sure how big a difference this makes, looked like small percentage points if anything It's a bit more internally concistent at least, which is nice. Also I understand the system now. I'd like to think it helped but I think this is kinda a "do you think it's easier to read" sort of situation. if it did help it was by the skin of its teeth * Saves 0.6 seconds off loading meta and lavaland's map files This is just a lot of micro stuff. 1: Bound checks don't need to be inside for loops, we can instead bound the iteration counts 2: TGM and DMM are parsed differently. in dmm a grid_set is one z level, in tgm it's one collumn. Realizing this allows you to skip copytexts and other such silly in the tgm implemenentation, saving a good bit of time 3: Min/max bounds do not need to be checked inside for loops, and can instead be handled outside of them, because we know the order of x and y iteration. This saves 0.2 seconds I may or may not have made the code harder to read, if so let me know and I'll check it over. * Micro ops key caching significantly. Fixes macros bug inserting \ into a dmm with no valid target would just less then loop the string. Dumb Anyway, optimizations. I save a LOT of time by not needing to call find_next_delimiter_position for every entry and var set. (like maybe 0.5 seconds, not totally sure) I save this by using splittext, which is significantly faster. this would cause parsing issues if you could embed \n into dmms, but you can't, so I'm safe. Lemme see uh, lots of little things, stuff that's suboptimal or could be done cheaper. Some "hey you and I both know a \" is 2 chars long sort of stuff I removed trim_text because the quote trimming was never actually used, and the space trimming was slower then using the code in trim. I also micro'd trim to save a bit of time. this saves another maybe 0.5. Few other things, I think that's the main of it. Gives me the fuzzy feelings * Saves 50% of build_coordinate's time Micro optimizing go brrrrr I made turf_blacklist an assoc list rather then just a normal one, so lookups are O(log n) instead of O(n). Also it's faster for the base case of loading mostly space. Instead of toggling the map loader right before and right after New() calls, we toggle at the start of mapload, and disable then reenable if we check tick. This saves like 0.3 seconds Rather then tracking an area cache ourselves, and needing to pass it around, we use a locally static list to reference the global list of area -> type. This is much faster, if slightly fragile. Rather then checking for a null turf at every line, we do it at the start of the proc and not after. Faster this way, tho it can in theory drop area vvs. Avoids calling world.preloader_setup unless we actually have a unique set of attributes. We use another static list to make this comparison cheap. This saves another 0.3 Rather then checking for area paths in the turf logic, or vis versa, we assume we are creating the type implied by the index we're reading off. So only the last type entry will be loaded like a turf, etc. This is slightly unsafe but saves a good bit of time, and will properly error on fucked maps. Also, rather then using a datum to hold preloader vars, we use 2 global variables. This is faster. This marks the end of my optimizations for direct maploading. I've reduced the cost of loading a map by more then 50% now. Get owned. * Adds a define for maploading tick check * makes shuttles load again, removes some of the hard limits I had on the reader for profiling * Macro ops cave generation Cave generation was insanely more expensive then it had any right to be. Maybe 0.5 seconds was saved off not doing a range(12) for EVERY SPAWNED MOB. 0.14 was saved off using expanded weighted lists (A new idea of mine) This is useful because I can take a weighted list, and condense it into weight * path count. This is more memory heavy, and costs more to create, but is so much faster then the proc. I also added a naive implementation of gcd to make this a bit less bad. It's not great, but it'll do for this usecase. Oh and I changed some ChangeTurfs into New()s. I'm still not entirely sure what the core difference between the two is, but it seems to work fine. I believe it's safe because the turf below us hasn't init'd yet, there's nothing to take from them. It's like 3 seconds faster too so I'll be sad when it turns out I'm being dumb * Micros river spawning This uses the same sort of concepts as the last change, mostly New being preferable to ChangeTurf at this level of code. This bit isn't nearly as detailed as the last few, I honestly got a bit tired. It's still like 0.4 seconds saved tho * Micros ruin loading Turns out it saves time if you don't check area type for every tile on a ruin. Not a whole ton faster, like 0.03, but faster. Saves even more time (0.1) to not iterate all your ruin's turfs 3 times to clear away lavaland mobs, when you're IN SPACE who wrote this. Oh it also saves time to only pull your turf list once, rather then 3 times
166 lines
7.2 KiB
Plaintext
166 lines
7.2 KiB
Plaintext
/datum/map_generator/cave_generator
|
|
var/name = "Cave Generator"
|
|
///Weighted list of the types that spawns if the turf is open
|
|
var/weighted_open_turf_types = list(/turf/open/misc/asteroid/airless = 1)
|
|
///Expanded list of the types that spawns if the turf is open
|
|
var/open_turf_types
|
|
///Weighted list of the types that spawns if the turf is closed
|
|
var/weighted_closed_turf_types = list(/turf/closed/mineral/random = 1)
|
|
///Expanded list of the types that spawns if the turf is closed
|
|
var/closed_turf_types
|
|
|
|
|
|
///Weighted list of mobs that can spawn in the area.
|
|
var/list/weighted_mob_spawn_list
|
|
///Expanded list of mobs that can spawn in the area. Reads from the weighted list
|
|
var/list/mob_spawn_list
|
|
///The mob spawn list but with no megafauna markers. autogenerated
|
|
var/list/mob_spawn_no_mega_list
|
|
// Weighted list of Megafauna that can spawn in the area
|
|
var/list/weighted_megafauna_spawn_list
|
|
///Expanded list of Megafauna that can spawn in the area. Reads from the weighted list
|
|
var/list/megafauna_spawn_list
|
|
///Weighted list of flora that can spawn in the area.
|
|
var/list/weighted_flora_spawn_list
|
|
///Expanded list of flora that can spawn in the area. Reads from the weighted list
|
|
var/list/flora_spawn_list
|
|
///Weighted list of extra features that can spawn in the area, such as geysers.
|
|
var/list/weighted_feature_spawn_list
|
|
///Expanded list of extra features that can spawn in the area. Reads from the weighted list
|
|
var/list/feature_spawn_list
|
|
|
|
|
|
///Base chance of spawning a mob
|
|
var/mob_spawn_chance = 6
|
|
///Base chance of spawning flora
|
|
var/flora_spawn_chance = 2
|
|
///Base chance of spawning features
|
|
var/feature_spawn_chance = 0.1
|
|
///Unique ID for this spawner
|
|
var/string_gen
|
|
|
|
///Chance of cells starting closed
|
|
var/initial_closed_chance = 45
|
|
///Amount of smoothing iterations
|
|
var/smoothing_iterations = 20
|
|
///How much neighbours does a dead cell need to become alive
|
|
var/birth_limit = 4
|
|
///How little neighbours does a alive cell need to die
|
|
var/death_limit = 3
|
|
|
|
/datum/map_generator/cave_generator/New()
|
|
. = ..()
|
|
if(!weighted_mob_spawn_list)
|
|
weighted_mob_spawn_list = list(/mob/living/simple_animal/hostile/asteroid/goldgrub = 1, /mob/living/simple_animal/hostile/asteroid/goliath = 5, /mob/living/simple_animal/hostile/asteroid/basilisk = 4, /mob/living/simple_animal/hostile/asteroid/hivelord = 3)
|
|
mob_spawn_list = expand_weights(weighted_mob_spawn_list)
|
|
mob_spawn_no_mega_list = expand_weights(weighted_mob_spawn_list - SPAWN_MEGAFAUNA)
|
|
if(!weighted_megafauna_spawn_list)
|
|
weighted_megafauna_spawn_list = GLOB.megafauna_spawn_list
|
|
megafauna_spawn_list = expand_weights(weighted_megafauna_spawn_list)
|
|
if(!weighted_flora_spawn_list)
|
|
weighted_flora_spawn_list = list(/obj/structure/flora/ash/leaf_shroom = 2 , /obj/structure/flora/ash/cap_shroom = 2 , /obj/structure/flora/ash/stem_shroom = 2 , /obj/structure/flora/ash/cacti = 1, /obj/structure/flora/ash/tall_shroom = 2, /obj/structure/flora/ash/seraka = 2)
|
|
flora_spawn_list = expand_weights(weighted_flora_spawn_list)
|
|
if(!weighted_feature_spawn_list)
|
|
weighted_feature_spawn_list = list(/obj/structure/geyser/random = 1)
|
|
feature_spawn_list = expand_weights(weighted_feature_spawn_list)
|
|
open_turf_types = expand_weights(weighted_open_turf_types)
|
|
closed_turf_types = expand_weights(weighted_closed_turf_types)
|
|
|
|
|
|
/datum/map_generator/cave_generator/generate_terrain(list/turfs, area/generate_in)
|
|
. = ..()
|
|
if(!(generate_in.area_flags & CAVES_ALLOWED))
|
|
return
|
|
|
|
var/start_time = REALTIMEOFDAY
|
|
string_gen = rustg_cnoise_generate("[initial_closed_chance]", "[smoothing_iterations]", "[birth_limit]", "[death_limit]", "[world.maxx]", "[world.maxy]") //Generate the raw CA data
|
|
|
|
// Area var pullouts to make accessing in the loop faster
|
|
var/flora_allowed = (generate_in.area_flags & FLORA_ALLOWED) && length(flora_spawn_list)
|
|
var/feature_allowed = (generate_in.area_flags & FLORA_ALLOWED) && length(feature_spawn_list)
|
|
var/mobs_allowed = (generate_in.area_flags & MOB_SPAWN_ALLOWED) && length(mob_spawn_list)
|
|
var/megas_allowed = (generate_in.area_flags & MEGAFAUNA_SPAWN_ALLOWED) && length(megafauna_spawn_list)
|
|
|
|
for(var/i in turfs) //Go through all the turfs and generate them
|
|
var/turf/gen_turf = i
|
|
|
|
var/closed = string_gen[world.maxx * (gen_turf.y - 1) + gen_turf.x] != "0"
|
|
var/turf/new_turf = pick(closed ? closed_turf_types : open_turf_types)
|
|
|
|
// The assumption is this will be faster then changeturf, and changeturf isn't required since by this point
|
|
// The old tile hasn't got the chance to init yet
|
|
new_turf = new new_turf(gen_turf)
|
|
|
|
if(gen_turf.turf_flags & NO_RUINS)
|
|
new_turf.flags_1 |= NO_RUINS
|
|
|
|
if(closed)//Open turfs have some special behavior related to spawning flora and mobs.
|
|
CHECK_TICK
|
|
continue
|
|
|
|
// If we've spawned something yet
|
|
var/spawned_something = FALSE
|
|
|
|
///Spawning isn't done in procs to save on overhead on the 60k turfs we're going through.
|
|
//FLORA SPAWNING HERE
|
|
if(flora_allowed && prob(flora_spawn_chance))
|
|
var/flora_type = pick(flora_spawn_list)
|
|
new flora_type(new_turf)
|
|
spawned_something = TRUE
|
|
|
|
//FEATURE SPAWNING HERE
|
|
if(feature_allowed && prob(feature_spawn_chance))
|
|
var/can_spawn = TRUE
|
|
|
|
var/atom/picked_feature = pick(feature_spawn_list)
|
|
|
|
for(var/obj/structure/existing_feature in range(7, new_turf))
|
|
if(istype(existing_feature, picked_feature))
|
|
can_spawn = FALSE
|
|
break
|
|
|
|
if(can_spawn)
|
|
new picked_feature(new_turf)
|
|
spawned_something = TRUE
|
|
|
|
//MOB SPAWNING HERE
|
|
if(mobs_allowed && !spawned_something && prob(mob_spawn_chance))
|
|
var/atom/picked_mob = pick(mob_spawn_list)
|
|
|
|
if(picked_mob == SPAWN_MEGAFAUNA)
|
|
if(megas_allowed) //this is danger. it's boss time.
|
|
picked_mob = pick(megafauna_spawn_list)
|
|
else //this is not danger, don't spawn a boss, spawn something else
|
|
picked_mob = pick(mob_spawn_no_mega_list) //What if we used 100% of the brain...and did something (slightly) less shit than a while loop?
|
|
|
|
var/can_spawn = TRUE
|
|
|
|
// prevents tendrils spawning in each other's collapse range
|
|
if(ispath(picked_mob, /obj/structure/spawner/lavaland))
|
|
for(var/obj/structure/spawner/lavaland/spawn_blocker in range(2, new_turf))
|
|
can_spawn = FALSE
|
|
break
|
|
//if the random is a standard mob, avoid spawning if there's another one within 12 tiles
|
|
else if(ispath(picked_mob, /mob/living/simple_animal/hostile/asteroid))
|
|
for(var/mob/living/simple_animal/hostile/asteroid/mob_blocker in range(12, new_turf))
|
|
can_spawn = FALSE
|
|
break
|
|
//if there's a megafauna within standard view don't spawn anything at all (This isn't really consistent, I don't know why we do this. you do you tho)
|
|
if(can_spawn)
|
|
for(var/mob/living/simple_animal/hostile/megafauna/found_fauna in range(7, new_turf))
|
|
can_spawn = FALSE
|
|
break
|
|
|
|
if(can_spawn)
|
|
if(ispath(picked_mob, /mob/living/simple_animal/hostile/megafauna/bubblegum)) //there can be only one bubblegum, so don't waste spawns on it
|
|
weighted_megafauna_spawn_list.Remove(picked_mob)
|
|
megafauna_spawn_list = expand_weights(weighted_megafauna_spawn_list)
|
|
megas_allowed = megas_allowed && length(megafauna_spawn_list)
|
|
new picked_mob(new_turf)
|
|
spawned_something = TRUE
|
|
CHECK_TICK
|
|
|
|
var/message = "[name] finished in [(REALTIMEOFDAY - start_time)/10]s!"
|
|
to_chat(world, span_boldannounce("[message]"))
|
|
log_world(message)
|