Twiggy
Account Details
SteamID64 76561197981944988
SteamID3 [U:1:21679260]
SteamID32 STEAM_0:0:10839630
Country Tonga
Signed Up April 19, 2014
Last Posted April 24, 2024 at 3:06 PM
Posts 1563 (0.4 per day)
Game Settings
In-game Sensitivity
Windows Sensitivity
Raw Input  
DPI
 
Resolution
1024*768
Refresh Rate
75 Hz
Hardware Peripherals
Mouse Razer Copperhead
Keyboard Packard Bell wireless AA powered
Mousepad ikea gaming desk
Headphones  
Monitor Packard Bell 17" CRT
1 ⋅⋅ 11 12 13 14 15 16 17 ⋅⋅ 104
#34 What happened to the old STAR_? in Videos
BeaterIt really is interesting how the amount of effort that you put into a video has almost no bearing on whether or not it will be successful. There's a reason why there are so many garbage channels out there that just follow the same tired, low effort formula that they know work (reaction channels are obvious examples of this). Clearly that isn't the route Ster wants to take his channel since making good content is more important to him than success. Good for him I say!

i think it hits harder when one starts out of passion, and then makes it a job. for a while you enjoy both the passion and the success it receives from the public. But then it diverges.
For such people it's harder to make content that works if the passion isn't there, and as soon as what you are passionate about is rejected, you are hit personnally.
Whereas "garbage channels" may consist of people who never viewed making videos as a passion project, but solely as a way of making money.
Ultimately those who stick to what they are passionate will see personal growth and deal better with negative feedback as they age.

posted about 3 years ago
#27 Übersaw is overrated trash imo in TF2 General Discussion

TIL vitasaw isn't banned

posted about 3 years ago
#15 how do i get rid of this shit in Q/A Help

firefox does not leak anymore but it will use just as much ram as chrome does =)

posted about 3 years ago
#25 pogchamp is dead in World Events
dbku didnt do any research at all did you lmao

edit: wait u didnt even read the original post about it getting removed, they fucking spell it out for you

calm down i'm not a native speaker;
i did not think "the face of the emote" referred to the actual person, rather that somehow the image of this guy was a symbol of violence. It makes more sense now, thanks to the much more helpful post by det-. Way to go, det-.

posted about 3 years ago
#22 pogchamp is dead in World Events
twitchWe've made the decision to remove the PogChamp emote following statements from the face of the emote encouraging further violence after what took place in the Capitol today.

So something is used as a rallying image, therefore it is censored? are all the pepega emotes related to 4chan haters also censored?

I don't get how it solves the idea at the cause of that (mis)use of the emote

posted about 3 years ago
#310 TF2 Players that went on to greater adventures. in TF2 General Discussion
Maxi-Nesh (old prem german sniper main https://etf2l.org/forum/user/71694/) signed for Navi's Apex team

https://twitter.com/natusvincere/status/1346479127063220224

uh nice, I think I played a season with him back in the days

posted about 3 years ago
#12 [netcode]Source vs GGPO style rollback in TF2 General Discussion

Okay. I can't say I'm out of the fog but I learned things thanks to you, so cheers =)

posted about 3 years ago
#10 [netcode]Source vs GGPO style rollback in TF2 General Discussion
frootloopsI think you're fundamentally missing where the prediction happens.

For me, source prediction happens on the client, based on what was last given by the server.

frootloopsFor rollback to work on a source server setup, the server would have to do that same "prediction" (which would most likely just be a movement direction), and then send that prediction to every client except for the one dropping packets.

Nah, the server doesnt care about this stuff. it computes a game state however it likes, then sends that game state to every client. What counts is that what is displayed on each client is as smooth and reactive as possible.
Therefore here I am not discussing "shifting away game state calculations to clients", I agree that it's not feasible and pointless.

frootloops Rollback means you would have projectiles be spawning halfway through their travel time on people's screens, or have people suddenly teleport halfway into their rocket jump, which already does happen.

Thats the point of having everyone use the same interp value : everyone would see the prjojectile appear at the same place. The lower the interp, the farther from the shooter the projectile will appear.
Hence, with everyone at high interp and playing in the past, the downside of the projectile spawning farther away could be mitigated, as everyone would be rendering frames related to the same tick and have an array of more recent ticks received stored waiting for eventual rollbacks. So if that array is big enough compared to the connection quality of the worst player, all the netcode shenanigans are resolved before anyone renders the tick, and every client renders the same thing.

With all that you said I still dont see how this wouldnt work.

frootloopsThe only surefire way to avoid having something like this happen, would be to have the input delay be equal to that of the highest ping player on the server ALONGSIDE a rendering buffer of the same length, and if everyone else in the server has 40-60 while one person has 150+ ping, it makes absolutely 0 sense to punish everybody else.

I am not talking about any delay-based netcode such as what is done in fighting games not using rollback, because that's out for FPS for reasons stated in the valve documentation.

SetsulIf the client can only see the entities the server already knows about it can't "predict spawn" its own projectiles either.

Why not? I believe most of the time when a client requests to spawn an projectile it is allowed to do so. If the client dies after predict spawning a projectile but before the projectile existence is confirmed by the server, then only that dead client will see some kind of visual artifact. And that client's dead anyway, no big deal.

SetsulThey don't add a delay. They do teleporting/warping by simply jumping to the actual position and because the only thing that will be skipped with decent ping are the startup frames they call it good enough.
Note that this is a horrible idea in any game with hitscan weapons.

I thought I've heard the KI dev talk about it but here is smth else instead :
https://arstechnica.com/gaming/2019/10/explaining-how-fighting-games-use-delay-based-and-rollback-netcode/

articleTurns out, we can eliminate this by combining delay-based and rollback solutions. In fact, every modern fighting game that uses rollback is built on a delay-based framework, with the important caveat that the delay is fixed at the start and never changes. If you pick a suitably small delay and keep it fixed, it should give enough time for “many" of your opponent’s inputs to reach you without needing to trigger a rollback on every state change. If there are network spikes, rather than increasing input delay or pausing and waiting, instead rollback takes over for any input that takes longer than the chosen delay. As long as the delay is small and consistent, players will quickly adapt, and many will not even notice a difference from offline play.

What number to set this delay at is up to the discretion of the developer. Some games, like 3rd Strike Online Edition, Darkstalkers Resurrection, Skullgirls and Samurai Shodown V Special, allow the user to set their own delay, usually between zero and eight frames. Other games, like Killer Instinct and Injustice 2, universally choose the number for all players (three frames, in the case of these games) and provide no option to change it.

Could you elaborate on why this is a bad idea for hitscan things?

SetsulEither projectiles spawn instantly locally and teleport for everyone else (GGPO, if prediction fails) or they appear everywhere at the same time at their actual spawn point which means they guy who pressed the button has to wait until everyone knows about the projectiles before they get to see their own projectile (source). You can't have both at the same time.

Sure, my question now is, if it's the first case, can you mitigate how much the projectiles teleport by increasing what i believe is named interp, which is delay between what state is computed by server and what state is rendered by clients?

posted about 3 years ago
#161 What mouse do you use? in Hardware
Phoenix21Twiggything is, even those cheap mice have those useless features like 8000 dpi where everyone uses 1600 at most and rgb, but there is nothing below g203 that I could buy without those features that i'm aware ofthese features are a part of the sensor spec, lower spec than hero sensor might have smoothing, very high lod or just spin out so you you are right with not going for anything cheaper.

Okay. All i'm saying is that I would be fine with an older spec optical sensor. "Innovation" and new products in this market seem very artificial to me.

posted about 3 years ago
#6 [netcode]Source vs GGPO style rollback in TF2 General Discussion
frootloopsRollback only works in a Peer to Peer system because the whole nature of it is that it allows users to input their inputs without having to worry about delay, making execution much more consistent. The main benefit of the system for fighting games is that it lets your execution be uninterrupted, as dropping a combo holds much more substantial weight than missing a shot 99% of the time.

Isn't it what "client side prediction" is?

frutloopsAs for predicting projectiles, it can't simply predict spawning a projectile because it would mean predicting a spawn on every missing packet, and then retroactively correcting that input, despawning the rocket and undoing any damage that might have happened,

What I meant by predicting projectiles would be to do exactly what is done with client side prediction, i.e. let the player do his inputs first and (maybe) roll them back later.
Because this could let a player perform a rocket jump and feel the blast effect immediately instead of having it delayed by whatever lag there is.

I am not talking about predicting that an opponent is going to spawn a projectile at your face.

SetsulI'd guess they don't want to deal with the mess that that creates. Firstly allowing the client to predict a projectile that may or may not ever be created in case the player dies before it actually happens but doesn't know it yet (the joys of latency) means they have to clean up "dead" projectiles. Projectiles seeming to spawn and then being deleted is also going to create a lot more salt than projectiles always spawning late if your ping is shit.

I did not understand that part. If we agree that a client cant "predict spawn" projectiles of opponents, how is that an issue? A client would still see on its display whatever entities the server tells him exist.

SetsulSecondly if the time of creation is based on what the shooter sees then everyone else is only going to see them after they have already traveled for ping from shooter to server + processing time + ping from server to everyone else. In other words: teleporting projectiles. Would you rather have someone with 900 ping have a suboptimal experience or have the projectiles he shoots suddenly appear in someone's ass without any chance of dodging?

Yes, this would be a problem.
In this GGPO article https://drive.google.com/file/d/1cV0fY8e_SC1hIFF5E1rT8XRVRzPjU8W9/view the dev explains that in practice it can hide the move starting late during the startup frames. We don't have that in shooters.

However, just as GGPO adds a fixed number of frame delay to mitigate for this, I believe what is rendered on client side in source is "the past", for the server :

valve wikiBy default, the client receives about 20 snapshot per second. If the objects (entities) in the world were only rendered at the positions received by the server, moving objects and animation would look choppy and jittery. Dropped packets would also cause noticeable glitches. The trick to solve this problem is to go back in time for rendering, so positions and animations can be continuously interpolated between two recently received snapshots. With 20 snapshots per second, a new update arrives about every 50 milliseconds. If the client render time is shifted back by 50 milliseconds, entities can be always interpolated between the last received snapshot and the snapshot before that.

The way I understand that, all clients are more or less in the past depending on their interp value. So if everyone agrees to be a fixed amount of time in the past, and that amount is great enough to mitigate teleporting projectiles issues, this problem should not arise most of the time.
I believe this is why interp is 100ms by default as well, if only jumping wasnt so sluggish, and everyone was forced to the same value, there would be no downsides to keeping it

setsulLast but not least there is no agreement as such, it is simply expected that everyone will arrive at the same state with the same inputs. That requires that no one deviates accidentally (no RNG allowed) or maliciously (cheating). No idea how they deal with packet loss. Allowing resynchronization by simply sending your own state/position sounds very exploitable.

Quoting this article :
http://mauve.mizuumi.net/2012/07/05/understanding-fighting-game-networking.html

articleYou can send multiple frames worth of input data for each frame, so that when one frame gets lost you don’t need to wait for a full resend cycle to complete in order to continue with the game. Input data’s pretty cheap so it doesn’t cost much to include 5-10 frames worth of data in a packet, so might as well include it. This is something that you should pretty much always do.

-> looks like a client must keep some history of past input data sent, to be able to give it to another client that lost a packet.

posted about 3 years ago
#6 Cyber Hook in Other Games
Shearsso it's Verlet Swing with a gun

Not quite, verlet swing looks like it's only swinging whereas cyber hook is mostly pulling, plus shenanigans like wall running and double jump

posted about 3 years ago
#159 What mouse do you use? in Hardware

thing is, even those cheap mice have those useless features like 8000 dpi where everyone uses 1600 at most and rgb, but there is nothing below g203 that I could buy without those features that i'm aware of

posted about 3 years ago
#3 [netcode]Source vs GGPO style rollback in TF2 General Discussion

Thanks for posting.

jojoProjectile is tougher than fighting games but hitscan is probably a bit easier so about the same overallvolvo docsPrediction is only possible for the local player and entities affected only by him, since prediction works by using the client's keypresses to make a "best guess" of where the player will end up. Predicting other players would require literally predicting the future with no data, since there's no way to instantaneously get keypresses from them.

So for some reason it's not allowed to predict spawning a projectile. I don't get why, especially since the lag compensation system on the server is already able to go back in time to figure out when a command happened

volvoThe lag compensation system keeps a history of all recent player positions for one second. If a user command is executed, the server estimates at what time the command was created as follows:

Command Execution Time = Current Server Time - Packet Latency - Client View Interpolation
Then the server moves all other players - only players - back to where they were at the command execution time. The user command is executed and the hit is detected correctly. After the user command has been processed, the players revert to their original positions.

Furthermore, I cannot find on that page what is actually inside a snapshot. Does it have player positions or inputs(besides things like entity spawns to draw rockets and play weapon sounds?) ?
How does the client predicts where the other players will be on the next tick?

Also the GGPO document mentions that games have to be 'deterministic' in order to use it. Is source engine deterministic?

posted about 3 years ago
#156 What mouse do you use? in Hardware

g203. cheap enough, and shape's close enough to my old razer copperhead while recent diamondback is too expensive

posted about 3 years ago
#1 [netcode]Source vs GGPO style rollback in TF2 General Discussion

I am reading and watching a bit about https://www.ggpo.net

It is said (https://www.youtube.com/watch?v=1RI5scXYhK0 and others) that rollback netcode can feel like offline gameplay up to 150ms, by giving a constant delay of 3 frames to everyone.

can we say a fighting game frame is like a source tick?
is that "frame delay" similar to lerp?

Then how is that rollback thing different from what is done in source engine https://developer.valvesoftware.com/wiki/Source_Multiplayer_Networking ?

Everyone knows tf2 is not playable at 150 ping where apparently fighting games players with rollback do not mind.

Both systems have prediction, and a fixed delay.

The only difference I see is that fighting games are peer to peer while fps are client-server, but for me it only changes the agreement on what is correct frame data. How does it change anything related to prediction?

pls help

posted about 3 years ago
1 ⋅⋅ 11 12 13 14 15 16 17 ⋅⋅ 104