-
-
Notifications
You must be signed in to change notification settings - Fork 683
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
[MDB IGNORE] [RECOUP] [PORT] Deprecates Auxmos in favour of LINDA #11813
base: master
Are you sure you want to change the base?
Commits on Jul 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ab198b7 - Browse repository at this point
Copy the full SHA ab198b7View commit details
Commits on Jul 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1b5b26c - Browse repository at this point
Copy the full SHA 1b5b26cView commit details -
Configuration menu - View commit details
-
Copy full SHA for da3c99a - Browse repository at this point
Copy the full SHA da3c99aView commit details -
Prevents the most common case of fire settling with an excited group …
…(#56317) Basically when a group with a breakdown timer one tick away from settling merges with a group with hotspots in it, and the one with a high breakdown timer is larger, the group would settle without respecting the timer of the hotspot group, causing fwoosh levels of flame. There's two other ways to achieve this, if you had one group of tiles that are close to the same gasmix as another group, and they became inactive, we'd have the same issue. I've solved this by moving the hotspot subprocess to after active turfs and before excited groups, just for safety ya feel me? It's still in theory possible, but much much harder. The hard solution to this would be to integrate heat with how we reset excited group timers, and split excited groups into smaller portions, but I'm not sure I like that idea. I need to mull it over.
Configuration menu - View commit details
-
Copy full SHA for ca63e66 - Browse repository at this point
Copy the full SHA ca63e66View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb223d4 - Browse repository at this point
Copy the full SHA eb223d4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 90b2df2 - Browse repository at this point
Copy the full SHA 90b2df2View commit details -
Removes the excited cleanup subprocess (#57381)
When I was in the process of developing my atmos fixes/optimizations, I focused heavily on maintaining the area of excited groups, since growing delayed self_breakdown(), and lead to shitty behavior which I thought was the result of my sleeping changes. This was not the case, those who came before me knew better, as always. Especially now, since I've unhooked breakdown from excited groups gaining new tiles, my concern was unfounded, and actually lead to shitty behavior and wasted time. I failed to recognize the value in random garbage_collect()s, they help prevent mass gas equalization over large spaces, they make gas appear to move more consistently when in these large spaces, and they lessen the amount of self_breakdown()s over large turf lists, which is very helpful for lowering the overall overtime of the subsystem. This fixes my mistake, and purges the excited cleanup subprocess from the air subsystem. It's free real estate babyyyyyyyy.
Configuration menu - View commit details
-
Copy full SHA for 738ba57 - Browse repository at this point
Copy the full SHA 738ba57View commit details -
Removes delta_time from the atmos system. (#57478)
Why? delta_time is about maintaining behavior when changing the wait of subsystems SSair's wait is dynamic by design, we hardly ever hit below it. What is important then, is maintaining behavior across each process. The key point here is making sure excited groups and turfs share the same amoumt of gas each process, no matter how high or low wait is. This is why subprocesses are a thing in the first place, to maintain this consistency. delta_time fucks with this, and will end up changing behavior if wait is ever changed.
Configuration menu - View commit details
-
Copy full SHA for 8567d27 - Browse repository at this point
Copy the full SHA 8567d27View commit details -
Makes pipenet rebuilds yield much more often (#57511)
Makes both the act of starting a rebuild, and the full rebuild itself yield. This might? Expose some things that rely on parent existing, but that was a problem before, if a rare one. It'll need cleaned up at some point, but I'd like some feedback on how I'm acomplishing this. Oh and I changed a very slight detail about how volume is used, instead of storing it throughout the whole loop and applying it at the last moment, we just operate on the pipeline's volume step by step. This fixes like, pipes being wrenched up while a rebuild is in progress, and the behavior is older then git, but I figured I should mention it
Configuration menu - View commit details
-
Copy full SHA for 3707a65 - Browse repository at this point
Copy the full SHA 3707a65View commit details -
Makes gas actually dissipate (#57634)
* Raises the quantize threshold from 1E-7 to 1E-4. This makes gas dissipate as expected, and should help with the amount of useless gas floating around the station at highpop Adds a garbage_collect() call to the portion of pipeline code where all gasmixes are in one place, this should clean things up properly. Changes BREATH_VOLUME from 2 to 1.99. This is imperative Documents a FUCKING HELLBUG in quantize/breathcode that can lead to breaths just not working sometimes. I'm not sure how to fix this totally, so I'll document it and pray. See <https://www.desmos.com/calculator/5icdlnktus> Adds a unit test to check for this sort of failure. Addendum for people tweaking this value in the future. Because o2 tank release values/human o2 requirements are very strictly set to the same pressure, small errors can cause breakage This comes from QUANTIZE being used in /datum/gas_mixture.remove(), forming a slight sawtooth pattern of the added/removed gas, centered on the actual pressure Changing BREATH_VOLUME can set us on the lower half of this sawtooth, making humans unable to breath at standard pressure. There's no good way I can come up with to hardcode a fix for this. So if you're going to change this variable graph the functions that describe how it is used/how it interacts with breath code, and pick something on the upper half of the sawtooth NOTE: I've made this change with a focus on o2 requirements. Changing this will effect other settings, but most all of them can be ignored, as none will notice. * Thank you moth man Co-authored-by: Mothblocks <[email protected]> * Docs the purpose of the breath unit test, and better explains partial pressure Co-authored-by: Mothblocks <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2d78ac4 - Browse repository at this point
Copy the full SHA 2d78ac4View commit details -
Some minor atmos cleanup (#57933)
Fixes mining not making turfs active, I forgot to add a type arg when I added one to AfterChange(). This isn't the only source of the issue, but it's the most prevalent one Cleans up total_moles_specific() slightly, there's no point iterating a list if you already have the gas id. Removes a null assignment and if check, they don't catch anything as things are now, and if someone passes null to the proc I want a runtime Oh and I reordered a bit of atmospherics.dm to make a comment make sense. Don't worry about it
Configuration menu - View commit details
-
Copy full SHA for 1e1536b - Browse repository at this point
Copy the full SHA 1e1536bView commit details
Commits on Jul 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2ab9bdf - Browse repository at this point
Copy the full SHA 2ab9bdfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8db5366 - Browse repository at this point
Copy the full SHA 8db5366View commit details
Commits on Jul 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4979288 - Browse repository at this point
Copy the full SHA 4979288View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5aab9ca - Browse repository at this point
Copy the full SHA 5aab9caView commit details -
Configuration menu - View commit details
-
Copy full SHA for 705bb38 - Browse repository at this point
Copy the full SHA 705bb38View commit details -
Configuration menu - View commit details
-
Copy full SHA for fab3a24 - Browse repository at this point
Copy the full SHA fab3a24View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ecdd55 - Browse repository at this point
Copy the full SHA 5ecdd55View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04599b2 - Browse repository at this point
Copy the full SHA 04599b2View commit details -
Revert "Removes blocks_air (BeeStation#8264)"
This reverts commit 59537a4.
Configuration menu - View commit details
-
Copy full SHA for f342544 - Browse repository at this point
Copy the full SHA f342544View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2bbeab - Browse repository at this point
Copy the full SHA b2bbeabView commit details -
Configuration menu - View commit details
-
Copy full SHA for f76f1fd - Browse repository at this point
Copy the full SHA f76f1fdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6765110 - Browse repository at this point
Copy the full SHA 6765110View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2cf1f09 - Browse repository at this point
Copy the full SHA 2cf1f09View commit details -
Configuration menu - View commit details
-
Copy full SHA for c1e1b9f - Browse repository at this point
Copy the full SHA c1e1b9fView commit details -
Configuration menu - View commit details
-
Copy full SHA for bf1c1f3 - Browse repository at this point
Copy the full SHA bf1c1f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for f22201b - Browse repository at this point
Copy the full SHA f22201bView commit details
Commits on Jul 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9fe91e4 - Browse repository at this point
Copy the full SHA 9fe91e4View commit details
Commits on Jul 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6729aa3 - Browse repository at this point
Copy the full SHA 6729aa3View commit details
Commits on Aug 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a6fe1d5 - Browse repository at this point
Copy the full SHA a6fe1d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 237d424 - Browse repository at this point
Copy the full SHA 237d424View commit details
Commits on Aug 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for fee100c - Browse repository at this point
Copy the full SHA fee100cView commit details -
Configuration menu - View commit details
-
Copy full SHA for bb2e9a4 - Browse repository at this point
Copy the full SHA bb2e9a4View commit details
Commits on Aug 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 72420c5 - Browse repository at this point
Copy the full SHA 72420c5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7bd92e9 - Browse repository at this point
Copy the full SHA 7bd92e9View commit details -
Hotspots / LINDA_fire docs. (#59493)
Writes some documentation on hotspot itself, perform_exposure, hotspot_expose, and process.
Configuration menu - View commit details
-
Copy full SHA for 5947846 - Browse repository at this point
Copy the full SHA 5947846View commit details -
Removes a source of nonexistent parent pipenets during update (#60853)
Shouldn't have any visible effects. Atmos machines would occasionally complain about parent pipenets not existing during an update and this should resolve a category of those kinds of warning. (This is a pain side effect of rebuilding being non instant, shoulda been dealt with a long time ago. Thank you -Lemon)
Configuration menu - View commit details
-
Copy full SHA for 7d95c7e - Browse repository at this point
Copy the full SHA 7d95c7eView commit details -
This PR takes the atmospherics.dm in _DEFINES and split it into several files to lower the mess, increase readability and improve on the code for later uses Also added some docs here and there
Configuration menu - View commit details
-
Copy full SHA for 9320505 - Browse repository at this point
Copy the full SHA 9320505View commit details -
The mole counts in the min checks in reactions.dm will now be multipl…
…ied by the inverse of the consumption multiplier. (#61557) The moles in the min checks in reactions.dm will be multiplied by the inverse of the consumption multiplier. This will allow reactions to fully react when it has available gasses. It also makes some of the code easier to read. Fixes (#61380) From the issue report above: Alright. So there's this pattern in reaction code Looks like this tgstation/code/modules/atmospherics/gasmixtures/reactions.dm Lines 597 to 604 in 00154ae var/nob_formed = min((cached_gases[/datum/gas/nitrogen][MOLES] + cached_gases[/datum/gas/tritium][MOLES]) * 0.01, cached_gases[/datum/gas/tritium][MOLES] * 0.1, cached_gases[/datum/gas/nitrogen][MOLES] * 0.2) var/energy_produced = nob_formed * (NOBLIUM_FORMATION_ENERGY / (max(cached_gases[/datum/gas/bz][MOLES], 1))) if ((cached_gases[/datum/gas/tritium][MOLES] - 5 * nob_formed < 0) || (cached_gases[/datum/gas/nitrogen][MOLES] - 10 * nob_formed < 0)) return NO_REACTION cached_gases[/datum/gas/tritium][MOLES] -= 5 * nob_formed cached_gases[/datum/gas/nitrogen][MOLES] -= 10 * nob_formed cached_gases[/datum/gas/hypernoblium][MOLES] += nob_formed We take the minimum of a few values, theoretically because we want the reaction to run with the lowest amount feasible. So if there's 20 plasma, 10 o2, and 2 n2, and the reaction takes 4 parts plasma, 2 part o2, and 1 part n2, we'll only end up using 8 plasma, 4 o2, and 2 n2. Since we can't react without the n2 and all. The if check is there to serve as a backup and prevent negative outputs, theoretically because they wreck havoc, though honestly they don't really, so long as the right bitflag is returned the whole mix is garbage collected anyway. Alright sanity check though. that's fine. You notice how here, because he removes 5x nob formed from tritium, he includes that in the if check? If you scroll out to the right you'll notice that he multiplies the inputs in the min by the inverse of their scalar. At least that's what we want trying to do, mixed the two up. You get the picture. The min serves to get the lowest possible amount to remove so the reaction can go through, and the if check serves as a sanity check wrapping around it. The issue is people have been misusing it, for a good while. (Including in this instance) They most commonly forget to include the inverse scaling in the min(), which leads to these weird fucked phantom gas minimums that aren't listed anywhere, but still stop the reaction. See: tgstation/code/modules/atmospherics/gasmixtures/reactions.dm Lines 690 to 697 in 00154ae var/heat_efficency = min(temperature * 0.3, cached_gases[/datum/gas/freon][MOLES], cached_gases[/datum/gas/bz][MOLES]) var/energy_used = heat_efficency * 9000 ASSERT_GAS(/datum/gas/healium, air) if ((cached_gases[/datum/gas/freon][MOLES] - heat_efficency * 2.75 < 0 ) || (cached_gases[/datum/gas/bz][MOLES] - heat_efficency * 0.25 < 0)) //Shouldn't produce gas from nothing. return NO_REACTION cached_gases[/datum/gas/freon][MOLES] -= heat_efficency * 2.75 cached_gases[/datum/gas/bz][MOLES] -= heat_efficency * 0.25 cached_gases[/datum/gas/healium][MOLES] += heat_efficency * 3 They need to be updated to not do this, and use min() properly. It leads to dumb graphs like this https://www.desmos.com/calculator/xufgz8piqw (Healium formation graphed out. p is freon, b is bz. if either are reduced below 0, the reaction stops. If you notice this leads to really strange scaling deadspots, and a lot of frustrating behavior) Thanks to @GuillaumePrata for bringing this to my attention, love you man.
Configuration menu - View commit details
-
Copy full SHA for 3c7651a - Browse repository at this point
Copy the full SHA 3c7651aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3dd0e54 - Browse repository at this point
Copy the full SHA 3dd0e54View commit details -
modules/atmospherics major cleanup (#61904), what a fucking mess
major cleanup of modules/atmospherics folder and all related files, still many missing -cleanup of procs name -cleanup of vars name -documentation of some of the procs -minor changes to some for() logic (no in game changes just early continue or as anything checks) No in game changes, only code and docs
Configuration menu - View commit details
-
Copy full SHA for 9a4e856 - Browse repository at this point
Copy the full SHA 9a4e856View commit details -
Configuration menu - View commit details
-
Copy full SHA for 07c00e7 - Browse repository at this point
Copy the full SHA 07c00e7View commit details
Commits on Aug 26, 2024
-
Ratón committed
Aug 26, 2024 Configuration menu - View commit details
-
Copy full SHA for 22b5e0b - Browse repository at this point
Copy the full SHA 22b5e0bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 10765fe - Browse repository at this point
Copy the full SHA 10765feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f5c2d4 - Browse repository at this point
Copy the full SHA 0f5c2d4View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa7f5eb - Browse repository at this point
Copy the full SHA fa7f5ebView commit details -
Edits the gas types to add breathing reagents, alerts, and balance so…
…me missing fusion powers
Configuration menu - View commit details
-
Copy full SHA for 22c0109 - Browse repository at this point
Copy the full SHA 22c0109View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e70541 - Browse repository at this point
Copy the full SHA 4e70541View commit details -
Reverts lung.dm, that was fucking stupid but this code is fucking stu…
…pid I wanna kill myself what the fuck aaaa
Configuration menu - View commit details
-
Copy full SHA for a81317e - Browse repository at this point
Copy the full SHA a81317eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e19870 - Browse repository at this point
Copy the full SHA 5e19870View commit details
Commits on Aug 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for dbe3742 - Browse repository at this point
Copy the full SHA dbe3742View commit details -
Configuration menu - View commit details
-
Copy full SHA for e4397dd - Browse repository at this point
Copy the full SHA e4397ddView commit details -
Holy shit what a bad cherry-pick, let's hope there's no unforseen con…
…sequences :clueless: (tgstation#62320) Ever pump hot nob into a tank of oxygen, see the pressure rise to 8000 kpa for a few seconds and have that deafening explosion sound play right after? This attempts to eliminate those by making the pressure transfer proc thingy in gas_mixture account for resulting temperature. The old one is preserved if the temperature difference isn't too big because it's most definitely more performant. The minimum temperature difference of 5 is completely arbitrary and I won't mind changing if asked. Math is a bit messy by necessity but I hope the comment is adequate. While I'm at it i also changed the return value of those procs to return a removed gasmix instead of directly merging. I sort of needed this for a clean implementation of assume_air in #62284. Will need more testing though. Found a better solution. Writes a small unit test to check for this too. Cuts down on one unintended cause of explosions.
Configuration menu - View commit details
-
Copy full SHA for 463f724 - Browse repository at this point
Copy the full SHA 463f724View commit details -
Shitass cherry pick once again (tgstation#63270)
About The Pull Request ALLLRIGHT so Multiz atmos was letting gas flow down into things that should be well, not flowable into Like say doors, or windows. This is weird. Let's get into some context on why yeah? First, how do things work currently? atoms have a can_atmos_pass var defined on them. This points to a define that describes how they interact with flow. ATMOS_PASS_NO means well, if we're asked, block any attempts at flow. This is what walls use. ATMOS_PASS_YES means the inverse ATMOS_PASS_DENSITY means check our current density ATMOS_PASS_PROC means call can_atmos_pass, we need some more details about this attempt These are effectively optimizations. That var, can_atmos_pass is accessed by CANATMOSPASS() the macro It's used for 3 things. 1: Can this turf share at all? 2: Can this turf share with another turf 3: Does this atom block a share to another turf All of this logic is bundled together to weed out the weak. Anyway, so when we added multiz atmos, we effectively made a second version of this system, but for vertical checks. Issue here, we don't actually need to. The only time we care if a check is vertical or not is if we're talking to another turf, it's not like you'll have an object that only wants to block vertical atmos. And even if you did, that's what ATMOS_PASS_PROC is for. As it stands we need to either ignore any object behavior, or just duplicate can_atmos_pass but again. Silly. So I've merged the two, and added an arg to mark if this is a verical attempt. This'll fix things that really should block up/down but don't, like windows and doors and such. Past that, I've cleaned can_atmos_pass up a bit so it's easier for people to understand in future. Oh and I removed the second CANATMOSPASS from immediate_calculate_adjacent_turfs. It isn't a huge optimization, and it's just not functional. It ties into zAirOut and zAirIn, both of which expect to be called with a valid direction. So if say, you open a door that's currently blocking space from leaking in from above, you end up with the door just not asking the space above if it wants to share, since the door can't zAirOut with itself. Let's just wipe it out. This makes the other code much cleaner too, heals the soul. Anyway yadeyada old as ass bug, peace is restored to the kingdom, none noticed this somehow you'd think people would notice window plasma, etc etc. Why It's Good For The Game MUH SIMULATION Also fuck window gas Changelog cl fix: Fixed gas flowing into windows from above, I am.... so tired fix: Fixes gas sometimes not moving up from below after a structure change, see above /cl
Configuration menu - View commit details
-
Copy full SHA for 1411e05 - Browse repository at this point
Copy the full SHA 1411e05View commit details
Commits on Aug 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3848806 - Browse repository at this point
Copy the full SHA 3848806View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03a48e1 - Browse repository at this point
Copy the full SHA 03a48e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3a4adbf - Browse repository at this point
Copy the full SHA 3a4adbfView commit details -
Configuration menu - View commit details
-
Copy full SHA for aea248b - Browse repository at this point
Copy the full SHA aea248bView commit details
Commits on Aug 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6ef726b - Browse repository at this point
Copy the full SHA 6ef726bView commit details -
Configuration menu - View commit details
-
Copy full SHA for d8c571a - Browse repository at this point
Copy the full SHA d8c571aView commit details -
Last commit before computer switch, again more misc changes, still tr…
…ying to figure out why every single turf is marked active
Configuration menu - View commit details
-
Copy full SHA for 1e61cb6 - Browse repository at this point
Copy the full SHA 1e61cb6View commit details
Commits on Aug 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3aaca42 - Browse repository at this point
Copy the full SHA 3aaca42View commit details
Commits on Aug 31, 2024
-
Atmos init speedup, saves 4 seconds (#69697)
* Micro optimizes ssair's turf init, saving 2 seconds Most of this is making existing operations do more legwork, or cheaper. I did add cycle checking to ONLY init turf linking, which required creating a new proc. Did some horrible horrible things in said proc to save like 0.8 seconds. I think it was worth it.
Configuration menu - View commit details
-
Copy full SHA for 262a577 - Browse repository at this point
Copy the full SHA 262a577View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7caabd0 - Browse repository at this point
Copy the full SHA 7caabd0View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc40a37 - Browse repository at this point
Copy the full SHA bc40a37View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a25da3 - Browse repository at this point
Copy the full SHA 4a25da3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8985a79 - Browse repository at this point
Copy the full SHA 8985a79View commit details -
Configuration menu - View commit details
-
Copy full SHA for afe780e - Browse repository at this point
Copy the full SHA afe780eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b1fcec6 - Browse repository at this point
Copy the full SHA b1fcec6View commit details -
Configuration menu - View commit details
-
Copy full SHA for edb1686 - Browse repository at this point
Copy the full SHA edb1686View commit details -
Optimizes atmos init by 20% (#73926)
Each time we intialized a turf's atmos, we checked all the turfs around it to see if they were different. This meant each pair of turfs talked to each other twice. If we instead do the comparing in a second loop, we can use current_cycle to ensure we only compare a pair once. This saves 0.5 seconds of atmos init. Speed
Configuration menu - View commit details
-
Copy full SHA for 0914191 - Browse repository at this point
Copy the full SHA 0914191View commit details -
Configuration menu - View commit details
-
Copy full SHA for caf809a - Browse repository at this point
Copy the full SHA caf809aView commit details -
Moves adjacent air into the main atmos subsystem (#64559)
We should just straight up not be processing turfs if the adjacent turf isn't correctly setup It used to be on a seperate subsystem with a second wait with the idea of reducing the cost of explosions, but since they're instant now there's no reason to not just have it on SSair. Gets rid of my excuse for process_cell runtimes too
Configuration menu - View commit details
-
Copy full SHA for 297742f - Browse repository at this point
Copy the full SHA 297742fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 62b38ad - Browse repository at this point
Copy the full SHA 62b38adView commit details -
Configuration menu - View commit details
-
Copy full SHA for 38d7a46 - Browse repository at this point
Copy the full SHA 38d7a46View commit details -
Configuration menu - View commit details
-
Copy full SHA for 46db896 - Browse repository at this point
Copy the full SHA 46db896View commit details -
Fixes ignoring space turfs in difference checks (#73962)
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may not be viewable. --> <!-- You can view Contributing.MD for a detailed description of the pull request process. --> ## About The Pull Request I done fucked it lads. Space turfs are never initialized, so asserting all shareable turfs have a cycle below 0 is not safe. instead we'll use -infinity. if that ever breaks I'll eat my shoe Closes #73961
Configuration menu - View commit details
-
Copy full SHA for cf29d59 - Browse repository at this point
Copy the full SHA cf29d59View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3754526 - Browse repository at this point
Copy the full SHA 3754526View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ce2fc1 - Browse repository at this point
Copy the full SHA 2ce2fc1View commit details -
Configuration menu - View commit details
-
Copy full SHA for a10ffb4 - Browse repository at this point
Copy the full SHA a10ffb4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1754d73 - Browse repository at this point
Copy the full SHA 1754d73View commit details -
Configuration menu - View commit details
-
Copy full SHA for bf2c064 - Browse repository at this point
Copy the full SHA bf2c064View commit details -
Configuration menu - View commit details
-
Copy full SHA for 997880a - Browse repository at this point
Copy the full SHA 997880aView commit details -
Configuration menu - View commit details
-
Copy full SHA for eacd012 - Browse repository at this point
Copy the full SHA eacd012View commit details
Commits on Sep 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d21e4ab - Browse repository at this point
Copy the full SHA d21e4abView commit details -
Configuration menu - View commit details
-
Copy full SHA for dabd6e3 - Browse repository at this point
Copy the full SHA dabd6e3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 00ecc2b - Browse repository at this point
Copy the full SHA 00ecc2bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e8037e - Browse repository at this point
Copy the full SHA 4e8037eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b5abcb0 - Browse repository at this point
Copy the full SHA b5abcb0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8c77d0a - Browse repository at this point
Copy the full SHA 8c77d0aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5faa2ae - Browse repository at this point
Copy the full SHA 5faa2aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for ee2a41a - Browse repository at this point
Copy the full SHA ee2a41aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 289ac18 - Browse repository at this point
Copy the full SHA 289ac18View commit details -
Configuration menu - View commit details
-
Copy full SHA for d67a07b - Browse repository at this point
Copy the full SHA d67a07bView commit details -
Configuration menu - View commit details
-
Copy full SHA for bcdc28d - Browse repository at this point
Copy the full SHA bcdc28dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8061855 - Browse repository at this point
Copy the full SHA 8061855View commit details -
Optimizes some gas_mixture procs, Optimizes pipeline processing signi…
…ficantly by 33% (#74233) It is faster to operate on a gas list, especially if cached, then it is to operate on a datum. Doing this cause I'm seeing cost in merge() post #74230 Hits on a few other important places too. self_breakdown and such. Worth it IMO Could in theory go further by caching the global list. I'm tempted I admit but it needs profiling first and it's late EDIT: I have not slept, and have gone tooo far [Micros /gas_mixture/copy and copy_from, adds a new proc to handle copying with a ratio, copy_from_ratio](tgstation/tgstation@91da000) [91da000](tgstation/tgstation@91da000) The ADD_GAS sidestep saves us 0.1 seconds of init (used to at least. Ensuring we don't break archive is gonna have a cost. I don't want to profile this so I'll estimate maybe 0.05 seconds). The faster version of copy_from is just well, better, and helps to avoid stupid [Optimizes pipeline processing](tgstation/tgstation@bf5a2d2) [bf5a2d2](tgstation/tgstation@bf5a2d2) I haven't slept in 36 hours. Have some atmos optimizations Pipelines now keep track of components that require custom reconciliation as a seperate list. This avoids the overhead of filtering all connected atmos machinery. Rather then relying on |= to avoid duplicate gas_mixtures, we instead use a cycle var stored on the mix itself, which is compared with a static unique id from reconcile_air() This fully prevents double processing of gas, and should (hopefully) prevent stupid dupe issues in future Rather then summing volume on the gas mixture itself, we sum it in a local var. This avoids datum var accesses, and saves a slight bit of time Instead of running THERMAL_ENERGY() (and thus heat_capacity(), which iterates all gases in the mix AGAIN) when processing gas, we instead just hook into the existing heat capacity calculation done inside the giver gases loop This saves a significant amount of time, somewhere around 30% of the proc, I think? This doesn't tackle the big headache here, which is the copy_from loop at the base of the proc. I think the solution is to convert pipelines to a sort of polling model. Atmos components don't "own" their mix, they instead have to request a copy of it from the pipeline datum. This would work based off a mutually agreed upon volume amount for that component in that process cycle. We'd use an archived system to figure out what gases to give to components, while removing from the real MOLES list. We could then push gas consumption requests to the pipeline, which would handle them, alongside volume changes, on the next process. Not sure how I'd handle connected pipelines... Merging post reconcile maybe? This is a problem for tomorrow though, I need to go to bed. Saves about 30% of pipeline costs. Profiles taken on kilo, until each reconcile_air hits 5000 calls [old.txt](https://github.com/tgstation/tgstation/files/11075118/Profile.results.total.time.txt) [new.txt](https://github.com/tgstation/tgstation/files/11075133/profiler.txt)
Configuration menu - View commit details
-
Copy full SHA for 907c1f4 - Browse repository at this point
Copy the full SHA 907c1f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7955990 - Browse repository at this point
Copy the full SHA 7955990View commit details
Commits on Sep 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2187181 - Browse repository at this point
Copy the full SHA 2187181View commit details
Commits on Sep 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 20a2ad3 - Browse repository at this point
Copy the full SHA 20a2ad3View commit details -
Configuration menu - View commit details
-
Copy full SHA for ada712f - Browse repository at this point
Copy the full SHA ada712fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a9dbc3 - Browse repository at this point
Copy the full SHA 2a9dbc3View commit details -
Configuration menu - View commit details
-
Copy full SHA for fafaba6 - Browse repository at this point
Copy the full SHA fafaba6View commit details -
Merge branch 'LINDA-FINALLY!!!!!!!!' of https://github.com/JixS4v/Bee…
…Station-Hornet into LINDA-FINALLY!!!!!!!!
Configuration menu - View commit details
-
Copy full SHA for f7cceef - Browse repository at this point
Copy the full SHA f7cceefView commit details -
Configuration menu - View commit details
-
Copy full SHA for ed06a40 - Browse repository at this point
Copy the full SHA ed06a40View commit details -
Configuration menu - View commit details
-
Copy full SHA for 54f3a00 - Browse repository at this point
Copy the full SHA 54f3a00View commit details -
Configuration menu - View commit details
-
Copy full SHA for 781fe42 - Browse repository at this point
Copy the full SHA 781fe42View commit details -
Configuration menu - View commit details
-
Copy full SHA for 295015d - Browse repository at this point
Copy the full SHA 295015dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 12aea53 - Browse repository at this point
Copy the full SHA 12aea53View commit details -
Configuration menu - View commit details
-
Copy full SHA for 676c4ed - Browse repository at this point
Copy the full SHA 676c4edView commit details -
Configuration menu - View commit details
-
Copy full SHA for a4b3eb7 - Browse repository at this point
Copy the full SHA a4b3eb7View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea78aa2 - Browse repository at this point
Copy the full SHA ea78aa2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b822a6 - Browse repository at this point
Copy the full SHA 8b822a6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2fee225 - Browse repository at this point
Copy the full SHA 2fee225View commit details -
Configuration menu - View commit details
-
Copy full SHA for 542839d - Browse repository at this point
Copy the full SHA 542839dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3389b22 - Browse repository at this point
Copy the full SHA 3389b22View commit details -
Configuration menu - View commit details
-
Copy full SHA for aa6ac49 - Browse repository at this point
Copy the full SHA aa6ac49View commit details
Commits on Sep 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for be71b45 - Browse repository at this point
Copy the full SHA be71b45View commit details
Commits on Sep 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e7b1e5b - Browse repository at this point
Copy the full SHA e7b1e5bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e59dc92 - Browse repository at this point
Copy the full SHA e59dc92View commit details -
Configuration menu - View commit details
-
Copy full SHA for e4fb506 - Browse repository at this point
Copy the full SHA e4fb506View commit details
Commits on Oct 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for eb7598c - Browse repository at this point
Copy the full SHA eb7598cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 62ca29a - Browse repository at this point
Copy the full SHA 62ca29aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 869d6f1 - Browse repository at this point
Copy the full SHA 869d6f1View commit details
Commits on Nov 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1a60da1 - Browse repository at this point
Copy the full SHA 1a60da1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 074b7e8 - Browse repository at this point
Copy the full SHA 074b7e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for ba4504b - Browse repository at this point
Copy the full SHA ba4504bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 58d5c41 - Browse repository at this point
Copy the full SHA 58d5c41View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7fe02fd - Browse repository at this point
Copy the full SHA 7fe02fdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 500d78d - Browse repository at this point
Copy the full SHA 500d78dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1eb4585 - Browse repository at this point
Copy the full SHA 1eb4585View commit details -
Configuration menu - View commit details
-
Copy full SHA for f3dc661 - Browse repository at this point
Copy the full SHA f3dc661View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3aa0002 - Browse repository at this point
Copy the full SHA 3aa0002View commit details -
Configuration menu - View commit details
-
Copy full SHA for c814096 - Browse repository at this point
Copy the full SHA c814096View commit details -
Merge branch 'Linda-Recoup' of https://github.com/XeonMations/BeeStat…
…ion-Hornet into Linda-Recoup
Configuration menu - View commit details
-
Copy full SHA for c51eb7a - Browse repository at this point
Copy the full SHA c51eb7aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 52c1939 - Browse repository at this point
Copy the full SHA 52c1939View commit details -
Merge pull request #10 from HowToLoLu/Linda-Recoup
Fixed your tanks!
Configuration menu - View commit details
-
Copy full SHA for eaa0d93 - Browse repository at this point
Copy the full SHA eaa0d93View commit details -
Configuration menu - View commit details
-
Copy full SHA for 627c67e - Browse repository at this point
Copy the full SHA 627c67eView commit details -
Merge pull request #11 from HowToLoLu/Linda-Recoup
I admit I rushed it; didn't test it then went back and saw a flaw at 2 AM
Configuration menu - View commit details
-
Copy full SHA for cf5d54e - Browse repository at this point
Copy the full SHA cf5d54eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e545d6 - Browse repository at this point
Copy the full SHA 2e545d6View commit details -
Merge branch 'Linda-Recoup' of https://github.com/XeonMations/BeeStat…
…ion-Hornet into Linda-Recoup
Configuration menu - View commit details
-
Copy full SHA for 06da1ba - Browse repository at this point
Copy the full SHA 06da1baView commit details -
Configuration menu - View commit details
-
Copy full SHA for 32b8d58 - Browse repository at this point
Copy the full SHA 32b8d58View commit details -
Configuration menu - View commit details
-
Copy full SHA for da1e9d8 - Browse repository at this point
Copy the full SHA da1e9d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 40d2e0d - Browse repository at this point
Copy the full SHA 40d2e0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c2c3c1 - Browse repository at this point
Copy the full SHA 7c2c3c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for f91b700 - Browse repository at this point
Copy the full SHA f91b700View commit details -
Configuration menu - View commit details
-
Copy full SHA for c1170d9 - Browse repository at this point
Copy the full SHA c1170d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for a31566d - Browse repository at this point
Copy the full SHA a31566dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5cd1e47 - Browse repository at this point
Copy the full SHA 5cd1e47View commit details -
Configuration menu - View commit details
-
Copy full SHA for b411d98 - Browse repository at this point
Copy the full SHA b411d98View commit details
Commits on Nov 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a354b90 - Browse repository at this point
Copy the full SHA a354b90View commit details
Commits on Nov 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8a502d0 - Browse repository at this point
Copy the full SHA 8a502d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for d33e8c3 - Browse repository at this point
Copy the full SHA d33e8c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 64b865d - Browse repository at this point
Copy the full SHA 64b865dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 83b0cc1 - Browse repository at this point
Copy the full SHA 83b0cc1View commit details -
Configuration menu - View commit details
-
Copy full SHA for d2fc998 - Browse repository at this point
Copy the full SHA d2fc998View commit details -
Configuration menu - View commit details
-
Copy full SHA for a519b84 - Browse repository at this point
Copy the full SHA a519b84View commit details -
Configuration menu - View commit details
-
Copy full SHA for b0d700a - Browse repository at this point
Copy the full SHA b0d700aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ac5961 - Browse repository at this point
Copy the full SHA 1ac5961View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03e8bec - Browse repository at this point
Copy the full SHA 03e8becView commit details -
Configuration menu - View commit details
-
Copy full SHA for 314cfed - Browse repository at this point
Copy the full SHA 314cfedView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a08baf - Browse repository at this point
Copy the full SHA 0a08bafView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2abf01a - Browse repository at this point
Copy the full SHA 2abf01aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 79a2459 - Browse repository at this point
Copy the full SHA 79a2459View commit details -
Configuration menu - View commit details
-
Copy full SHA for 63c4013 - Browse repository at this point
Copy the full SHA 63c4013View commit details -
Configuration menu - View commit details
-
Copy full SHA for 17a61ce - Browse repository at this point
Copy the full SHA 17a61ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for cb61f6d - Browse repository at this point
Copy the full SHA cb61f6dView commit details
Commits on Nov 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b2847f0 - Browse repository at this point
Copy the full SHA b2847f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0be7a15 - Browse repository at this point
Copy the full SHA 0be7a15View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c9444d - Browse repository at this point
Copy the full SHA 1c9444dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 94f2541 - Browse repository at this point
Copy the full SHA 94f2541View commit details -
Configuration menu - View commit details
-
Copy full SHA for f3e747d - Browse repository at this point
Copy the full SHA f3e747dView commit details -
Configuration menu - View commit details
-
Copy full SHA for aa077e6 - Browse repository at this point
Copy the full SHA aa077e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2540b3b - Browse repository at this point
Copy the full SHA 2540b3bView commit details
Commits on Nov 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0865ece - Browse repository at this point
Copy the full SHA 0865eceView commit details -
Merge pull request #12 from HowToLoLu/Linda-Recoup
[Linda-Recoup] Maps? Maps! MAAAAAAAAAAAPS!!
Configuration menu - View commit details
-
Copy full SHA for 7f67076 - Browse repository at this point
Copy the full SHA 7f67076View commit details
Commits on Nov 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2ad24ae - Browse repository at this point
Copy the full SHA 2ad24aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 78f7875 - Browse repository at this point
Copy the full SHA 78f7875View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8123cd6 - Browse repository at this point
Copy the full SHA 8123cd6View commit details -
Configuration menu - View commit details
-
Copy full SHA for a87900b - Browse repository at this point
Copy the full SHA a87900bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 94f8888 - Browse repository at this point
Copy the full SHA 94f8888View commit details -
Configuration menu - View commit details
-
Copy full SHA for c5d2e86 - Browse repository at this point
Copy the full SHA c5d2e86View commit details -
Configuration menu - View commit details
-
Copy full SHA for b756a67 - Browse repository at this point
Copy the full SHA b756a67View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5481d4d - Browse repository at this point
Copy the full SHA 5481d4dView commit details
Commits on Nov 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1d1514b - Browse repository at this point
Copy the full SHA 1d1514bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 211392e - Browse repository at this point
Copy the full SHA 211392eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6a20df7 - Browse repository at this point
Copy the full SHA 6a20df7View commit details
Commits on Nov 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 43470dd - Browse repository at this point
Copy the full SHA 43470ddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f0e852 - Browse repository at this point
Copy the full SHA 7f0e852View commit details -
Configuration menu - View commit details
-
Copy full SHA for 68de128 - Browse repository at this point
Copy the full SHA 68de128View commit details -
Configuration menu - View commit details
-
Copy full SHA for 37b7ebe - Browse repository at this point
Copy the full SHA 37b7ebeView commit details