GoldenEye: Source Forums

  • March 28, 2024, 08:25:01 am
  • Welcome, Guest
Advanced search  

News:

Pages: [1]   Go Down

Author Topic: Beta 4 Programming (Part 1)  (Read 12626 times)

0 Members and 1 Guest are viewing this topic.

killermonkey

  • GES Programmer
  • Retired Lead Developer
  • GE:S Fanatic
  • *
  • Posts: 5,473
  • Reputation Power: 346
  • killermonkey is awe-inspiring!killermonkey is awe-inspiring!killermonkey is awe-inspiring!killermonkey is awe-inspiring!killermonkey is awe-inspiring!killermonkey is awe-inspiring!killermonkey is awe-inspiring!killermonkey is awe-inspiring!killermonkey is awe-inspiring!killermonkey is awe-inspiring!killermonkey is awe-inspiring!killermonkey is awe-inspiring!
  • Offline Offline
    • DroidMonkey Apps
Beta 4 Programming (Part 1)
« on: January 31, 2010, 05:58:47 pm »

Hey guys, I know I am very vocal on the forums in everyone else's topic, but most of you don't really understand what it takes to get this mod to perform and feel like the GoldenEye 64. The developers and beta testers know all too well how many innocuous bugs crop up out of such benign additions such as a revamped blood screen or new team score display on the hud. Not to mention the extremely tricky bugs involved with bullet penetration, rolling explosions, and dynamic token gameplay...

This blog will discuss some of those bugs and what you can expect from Beta 4. I am not whining or complaining, but you have to understand how difficult it is to erase all the BAD things Valve hard coded into the SDK.



Bullet Penetration

My first, second, and third approach to bullet penetration were complete failures in terms of effects and performance. Basically, I extended the penetration of glass to all other objects which seemed like a trivial extension, but Valve stepped in again...

Their generalization of what a shot does during it's "flight" prohibited the penetration from working on both client and server sides. Ever notice that when you fire on glass you only see a bullet hole on your side of the glass and you never see a tracer past the glass? Well that is what I am talking about. The shot stopped on client side at the glass and continued only server side after the glass. This causes a desync in the shot effects and potential lag in the visualization of your attack. The reason for this was actually quite simple. If glass is bullet proof, only the server knows. So they didn't draw the effect on client side pending the bullet was actually stopped and hoped you didn't notice.

The final implementation of penetration involved me rewriting the entire sequence of firing bullets to be both client and server side so the effects are visible to the local player and the other connected players. I also implemented a method of bullet "slowing" such that the deeper the bullet penetrates the less it can penetrate on the next hit of an object (including players!). Although another bug crept in.... penetrated weapons actually hit multiple hit boxes on the same player as it passed through the player! This resulted in an instant kill with the magnum even if you hit them in the legs. So another run through introduced a filter to prevent the same player from being hit by the same penetrated shot.




Rolling Explosions

Another thing that Valve's damage system was not designed for was damage over a prolonged period from the same entity. Basically when you are damaged by something the damage has to know who/what inflicted it and that information is passed down through all the functions that are called.

Take the mine for example. In a HL2 explosion the explosion damage lasts for 1 game frame. It is applied instantly to all objects within range and then it never happens again. The effect lasts for multiple frames, but it doesn't do anything damage wise. This allows the mine to remove itself from the world on the NEXT frame and still count as the inflictor, etc etc.

With rolling explosions, damage is applied over a 3 second interval (roughly). If the mine removed itself after that first frame the explosion would be holding onto an invalid pointer to the now deleted mine as it tried to apply damage again! This was causing serious crashes in our system that were very hard to identify at first. The fix was to create a new removal function that postponed actual deletion of the entity (mine) for X seconds and only kept it hidden from view during that time. That way damage application could use the information (printname, dmg amount, etc.) through all the successive damage applications over the course of the explosion.





To be continued...
Logged

CCsaint10

  • Nickname: "Saint"
  • 007
  • ****
  • Posts: 1,560
  • Reputation Power: 71
  • CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!
  • Offline Offline
Re: Beta 4 Programming (Part 1)
« Reply #1 on: January 31, 2010, 06:22:57 pm »

Although this log doesn't even come close to dealing with all the hassles that we put you through and all code you have to modify/make.....it at least gives a picture of how much the mod team appreciates your efforts. Beta 4 is strong (especially after that particle simulation fix last night that you figured out). I am so grateful. You guys are in for a GREAT surprise. :)
Logged

Brings back memories, doesn't it? :D

VC

  • Valiant Varanidæ, Citrus Jockey
  • Retired Developer
  • GE:S Fanatic
  • *****
  • Posts: 2,843
  • Reputation Power: 16
  • VC is working their way up.VC is working their way up.VC is working their way up.
  • Offline Offline
Re: Beta 4 Programming (Part 1)
« Reply #2 on: January 31, 2010, 07:06:31 pm »

The true heroics isn't in the coding.  It's in dealing with me telling you how to do it.
Logged
"As for VC's scripts they have not broken the game at all, in fact the game has never felt better." -- KM
"(03:12:41 PM) KM: I would call you a no life loser, but you are useful"
"(03:12:59 PM) VC: Go ahead.  I am, and I am."

CCsaint10

  • Nickname: "Saint"
  • 007
  • ****
  • Posts: 1,560
  • Reputation Power: 71
  • CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!CCsaint10 is awe-inspiring!
  • Offline Offline
Re: Beta 4 Programming (Part 1)
« Reply #3 on: January 31, 2010, 08:36:17 pm »

right....because you have all the answers to everything...
Logged

Brings back memories, doesn't it? :D

Ruone Delacroix

  • 00 Agent
  • ***
  • Posts: 320
  • Reputation Power: 7
  • Ruone Delacroix has no influence.
  • Offline Offline
    • Nexus of Gaming
Re: Beta 4 Programming (Part 1)
« Reply #4 on: February 15, 2011, 09:17:17 pm »

I know that I'm a bit late with this, but I think that it's incredible just how complex these details are in this game (and I'm guessing in most other games too). I especially liked reading about the rolling explosions.

Honestly, I'd buy you all a round if I could. You're all working so hard to make this game as amazing as it is. Thanks alone doesn't even scratch the surface of how much you all deserve.
Logged
Admin of {TLP} Tastes Like Pants

Proud player of Goldeneye: Source. Keep up the great work, team!

JcFerggy

  • 007
  • ****
  • Posts: 1,036
  • Reputation Power: 87
  • JcFerggy is awe-inspiring!JcFerggy is awe-inspiring!JcFerggy is awe-inspiring!JcFerggy is awe-inspiring!JcFerggy is awe-inspiring!JcFerggy is awe-inspiring!JcFerggy is awe-inspiring!JcFerggy is awe-inspiring!JcFerggy is awe-inspiring!JcFerggy is awe-inspiring!JcFerggy is awe-inspiring!JcFerggy is awe-inspiring!
  • Offline Offline
Re: Beta 4 Programming (Part 1)
« Reply #5 on: February 16, 2011, 02:40:22 am »

I'd love a round, but due note that you have made a bump spanning over a year.
Logged

Ruone Delacroix

  • 00 Agent
  • ***
  • Posts: 320
  • Reputation Power: 7
  • Ruone Delacroix has no influence.
  • Offline Offline
    • Nexus of Gaming
Re: Beta 4 Programming (Part 1)
« Reply #6 on: February 16, 2011, 02:44:31 am »

Yeah, I do realize that. I misread the date as New Year's Eve 2010. I don't mean to go around necroposting, but I'm just trying to get some activity in this place again by saying more than just "cool!" and having some logic involved.
Logged
Admin of {TLP} Tastes Like Pants

Proud player of Goldeneye: Source. Keep up the great work, team!
Pages: [1]   Go Up