- Aug 30, 2018
-
-
Sal authored
-
Sal authored
Before: https://cdn.discordapp.com/attachments/300531341957529602/484842910475354124/kart0110.png After: https://cdn.discordapp.com/attachments/270211093761097728/484841628771680258/kart0109.png Not a solution, but better than the previous.
-
Sal authored
-
Sal authored
-
Sal authored
-
Sal authored
-
Sal authored
-
Sal authored
1.) Instead of prioritizing best angle above all else, it averages both distance and angle to figure out which is the best overall target. 2.) Jawz will completely cut out angles higher than 45 degrees, preventing instances where someone behind you is considered a better target than who you're looking at. 3.) Jawz does the 45 degree angle checking in Race as well, meaning that they will ignore racers that are neck & neck with you, even if they're technically the next place above you, so that Jawz doesn't take a hard left into a wall.
-
- Aug 29, 2018
-
-
Sal authored
-
Sal authored
- Cleaned up some redundant code - Halved the speed of backwards thrown missiles (previously PROJSPEED/2, now is PROJSPEED/4)
-
Sal authored
-
Sal authored
Item distribution debugger is a netvar that enables cheats, so no exploiting!
-
Sal authored
Scales below 8 players instead of 6 players. The distance multipler in 4P is now x1.14 instead of x1.07.
-
- Aug 28, 2018
-
-
Sal authored
-
- Aug 27, 2018
-
-
Sal authored
- different min/max on capped spring pads - turn the normally almost-useless "non-ramp sector" type into "wall sector", which disables both stepup AND stepdown instead of just stepdown
-
toaster authored
Fix that thing where item boxes just wouldn't respawn in battle if you nabbed them all too quickly (which is very likely to happen in large netgames where we have the great fortune of playing on battal bowl).
-
Sal authored
-
- Aug 26, 2018
-
-
Sal authored
Less grow, less invinc, less ballhog, just a teensy bit less triple orbinaut, and SPB odds no longer scale with lower player counts like other power items do
-
Sal authored
-
Sal authored
-
toaster authored
-
https://git.magicalgirl.moe/STJr/SRB2.gittoaster authored
# Conflicts: # src/g_game.c # src/v_video.c
-
toaster authored
Dumbass copypaste rectified, stplyr is NOT valid in mobjthinker code. toaster, stop making commits to sonicitems
-
Sal authored
-
- Aug 25, 2018
-
-
Monster Iestyn authored
v_video Killed The r_radio Star See merge request STJr/SRB2!270
-
Monster Iestyn authored
Zalloc Potter and the Death-Free Hallows See merge request STJr/SRB2!269
-
Monster Iestyn authored
Lighting fixes? Plane and simple! See merge request STJr/SRB2!268
-
toaster authored
Introduce a temporary measure to enable the old stuff, minus one of the most obviously terrible bugbears of yesteryear. Let it be known that any downstream poirt will almost certainly toggle this ASAP.
-
toaster authored
Clean up a bunch of v_video.c functions that previously exhibited unfortunate side effects when run in non-green resolutions. * V_DrawFixedPatch and ilk: * Change the offset of V_FLIP so it's not one screen-pixel off where its non-flipped sprite would have started being drawn from. * Write to x and y as well as desttop so that anti-screen-overflow checks later in the function behave properly with non-green resolutions. * V_DrawFill: * Reduce number of operations performed upon `c`. * V_DrawString and ilk: * Offset the left and right boundary checks in non-green resolutions such that you can actually draw stuff to the left of basevid screen x coordinate 0.
-
toaster authored
* Stop orphaning their memory. They ARE PU_LEVEL, so they'll disappear eventually, but, like... it's not good memory management practice to just *orphan* them when you're literally never going to do anything with them ever again. Y'know? * Make ghosts spawn properly on slopes.
-
toaster authored
* Fix that thing where ALL transparent FOF planes were continuously fullbright unless encased in a fog which disables sprite fullbrightness, which was long-hated by many people in the community! * For backwards compatibility, setting flag 1 in that fog field (which is probably the most common "in-the-wild" usage of this feature) will continue to make objects un-fullbright. * For situations where you desperately want the behaviour to be enabled, you can apply fog flag 2. * Change the fadestart and fadeend range in which colormaps are generated. * The problem HERE was that the darkest light level reached by generated colormaps was actually slightly brighter than the darkest level reached by normal colormaps. * The typo I fixed does have SOME basis in fact - standard colormap lumps are 34 (33 in 0-indexing) long rather than 32 (31), but whoever wrote this didn't realise that the code for generating them didn't do it DooM style, just bright-to-dark with no extras on the end...
-
- Aug 24, 2018
-
-
toaster authored
* They're clearly not quick enough at the job, since it causes a bunch of silly race conditions. * Instead, K_UpdateHnextList and K_CleanHnextList are in charge of removing them, which are called in the circumstances itemamount (and itemheld/eggmanheld) is changed. * Also, tweak a few places so that trailers AND orbiters can use the same system. Also, some minor thingies. * Turn all the useless ```if (a) { A } else if (!a) { B }``` bullshit into ```if (a) { A } else { B }``` bullshit. * Fix up some minor inaccuracies in the playerarrow stuff that doesn't result in creating more sprites.
-
toaster authored
* The tab and intermissions rankings... * ...now have parity in behaviour! * ...now properly handle player counts over 8, and no longer supports player counts over 16! * The Item Arrow in Battle... * No longer develops any extremely stupid bugs due to Orbinaut sprites that makes all objects in state S_INVISIBLE develop <!>'s! (Ask me about this if you're curious as to how it affected everything else too.)
-
- Aug 23, 2018
-
-
Sal authored
All spring jump issues on the sheet are fixed now.
-
- Aug 21, 2018
-
-
Monster Iestyn authored
update XPM icon See merge request STJr/SRB2!267
-
- Aug 20, 2018
-
-
Monster Iestyn authored
Change default sound volume See merge request STJr/SRB2!238
-
- Aug 16, 2018
-
-
Monster Iestyn authored
SDL Mixer fixes Closes #31 See merge request STJr/SRB2!260
-
- Aug 15, 2018
-
-
toaster authored
I wouldn't have done this, but I was already in the code to fix the bugs, so I hit something that was bugging me[/sonic adventure voice] as well
-
toaster authored
While I cannot guarantee the class of glitches that allows for additional items to be thrown/dropped has been completely obliterated, this DOES prevent the class of exploits that allows for "infinite items" (really just negative quantities not completely bounds-checked for).
-
toaster authored
-