Ask the [DEV]s a (?) - Part 2
-
- Posts: 227
- Joined: 2015-04-17 20:12
Re: Ask the [DEV]s a (?) - Part 2
Yeah I can imagine how long a serious and non-boring map would take to create.If someone ever will create such a map he got my respect for the rest of my life
but interesting that its technically possible
but interesting that its technically possible
[img]http://i.imgur.com/MAG8dcg.jpg[/img]
-
- Posts: 3430
- Joined: 2008-09-07 14:16
Re: Ask the [DEV]s a (?) - Part 2
It all depends on the LoD and optimization of the assets, pluss how big viewdistance and some other factorsgwa1hir wrote:Yeah I can imagine how long a serious and non-boring map would take to create.If someone ever will create such a map he got my respect for the rest of my life
but interesting that its technically possible
[R-DEV]Ninja2dan: Not having a spotter is like masturbating with a cheese grater...mildly amusing at first, but generally painful and bloody in the end.
Thornehaw: If all this have been evidently true, Battlefield is a much scarier and dirtier than ever imagined. Not a conspiracy, but a possibility. If it is true, then trusting another is quite worrisome.
Thornehaw: If all this have been evidently true, Battlefield is a much scarier and dirtier than ever imagined. Not a conspiracy, but a possibility. If it is true, then trusting another is quite worrisome.
-
- Posts: 7818
- Joined: 2006-12-17 15:14
Re: Ask the [DEV]s a (?) - Part 2
Imo best way to do it on this engine would be custom statics but rather than single buildings but a half block or block group. You could optimize the hell out of it and decrease drawculls however lightmaps would be less than great on them.
-
- Retired PR Developer
- Posts: 47909
- Joined: 2005-12-13 20:00
Re: Ask the [DEV]s a (?) - Part 2
If they where low poly buildings all grouped up it would increase performance for large VD maps BUT it would mean you couldn't have any significant detail on the actual buildings itself otherwise you would be drawing a building in highest detail, with all its light fittings etc when your 500m away or so from it, close to another one. This is one of the main reasons why things like the carrier are split up into septate static segments so that when your on one end of the carrier, your not rendering the other end in all its detail but in a much lower LOD.Rabbit wrote:Imo best way to do it on this engine would be custom statics but rather than single buildings but a half block or block group. You could optimize the hell out of it and decrease drawculls however lightmaps would be less than great on them.
-
- Retired PR Developer
- Posts: 17261
- Joined: 2007-02-17 14:59
Re: Ask the [DEV]s a (?) - Part 2
Uh, lods do exist.[R-DEV]Rhino wrote:t would mean you couldn't have any significant detail on the actual buildings itself otherwise you would be drawing a building in highest detail, with all its light fittings etc when your 500m away or so from it
-
- PR:BF2 Developer
- Posts: 2765
- Joined: 2006-11-11 15:05
Re: Ask the [DEV]s a (?) - Part 2
What Rhino is saying is that if your static is say 500m long, say, then while you're at one end of it (close enough for the LOD not to kick in), then the entire static, even 500m away will be rendering in full detail, putting a strain on performance as it's obviously drawing more polys at one time for that object than it would be if it was broken up, like say the carrier.[R-DEV]Outlawz7 wrote:Uh, lods do exist.
I think 2km is a good size for a decent city map
-
- Retired PR Developer
- Posts: 47909
- Joined: 2005-12-13 20:00
Re: Ask the [DEV]s a (?) - Part 2
Pretty much what Ranky said but here is a little pic to explain it better:[R-DEV]Outlawz7 wrote:Uh, lods do exist.
If all those grey boxes are buildings of the same single static in the black box, and the player is the little red dot in the bottom left, he is close enough to all those buildings, being a single static, to render them all in lod0, and even thou he is really far away from a lot of those buildings, not even being able to see most of them, he is still having to render them all in lod0 because he still needs to render the one he's closest to in lod0.
-
- Posts: 7818
- Joined: 2006-12-17 15:14
Re: Ask the [DEV]s a (?) - Part 2
Yeah, but that is what I wanted to do way back when.[R-DEV]Rhino wrote:If they where low poly buildings all grouped up it would increase performance for large VD maps BUT it would mean you couldn't have any significant detail on the actual buildings itself otherwise you would be drawing a building in highest detail, with all its light fittings etc when your 500m away or so from it, close to another one. This is one of the main reasons why things like the carrier are split up into septate static segments so that when your on one end of the carrier, your not rendering the other end in all its detail but in a much lower LOD.
-
- Retired PR Developer
- Posts: 17261
- Joined: 2007-02-17 14:59
Re: Ask the [DEV]s a (?) - Part 2
Oh, right. I didn't think the idea was to make a 500m long city block, I thought in terms of having a few buildings as one, like row houses.'[R-DEV wrote:Rhino;2098055']Pretty much what Ranky said but here is a little pic to explain it better:
If all those grey boxes are buildings of the same single static in the black box, and the player is the little red dot in the bottom left, he is close enough to all those buildings, being a single static, to render them all in lod0, and even thou he is really far away from a lot of those buildings, not even being able to see most of them, he is still having to render them all in lod0 because he still needs to render the one he's closest to in lod0.
-
- Posts: 2476
- Joined: 2007-02-25 15:38
Re: Ask the [DEV]s a (?) - Part 2
Didn't someone somewhere post about occlusion drawcalls or something like that? Where if you LOS was blocked by a static then it wouldn't render stuff behind it.
Could be taking complete bullcrap but I swear it was mentioned. When I have time I'll see if I can dig up the post.
Could be taking complete bullcrap but I swear it was mentioned. When I have time I'll see if I can dig up the post.
ex |TG-31st|
AnimalMotherUK - YouTube
AnimalMotherUK - YouTube
vistamaster01: "I just dont get people with girl usernames/pics/sigs lol,
for example I thought AnimalMother was a girl ops:"
Arte et Marte
for example I thought AnimalMother was a girl ops:"
Arte et Marte
-
- PR:BF2 Lead Developer
- Posts: 8532
- Joined: 2012-01-02 12:37
Re: Ask the [DEV]s a (?) - Part 2
We already have occlusion meshes for many of our larger statics. But doesn't seem to do any wonders.
-
- Retired PR Developer
- Posts: 47909
- Joined: 2005-12-13 20:00
Re: Ask the [DEV]s a (?) - Part 2
Ye, most of the statics in PR have them now but hasn't done that much for performance and it wouldn't work for culling the bits of a single static you can't see, can only cull entire statics when they are fully out of view which is another reason why not to have big blocks of buildings.
-
- Retired PR Developer
- Posts: 17261
- Joined: 2007-02-17 14:59
Re: Ask the [DEV]s a (?) - Part 2
https://www.realitymod.com/forum/f189-m ... tatic.htmlAnimalMother. wrote:Didn't someone somewhere post about occlusion drawcalls or something like that? Where if you LOS was blocked by a static then it wouldn't render stuff behind it.
Could be taking complete bullcrap but I swear it was mentioned. When I have time I'll see if I can dig up the post.
Personally, I kinda dislike them, mainly because of stuff like this:
https://youtu.be/QY8pAuE9Sqg?t=6m46s
-
- Posts: 2476
- Joined: 2007-02-25 15:38
Re: Ask the [DEV]s a (?) - Part 2
Well that I did not know![R-DEV]Mineral wrote:We already have occlusion meshes for many of our larger statics. But doesn't seem to do any wonders.
ex |TG-31st|
AnimalMotherUK - YouTube
AnimalMotherUK - YouTube
vistamaster01: "I just dont get people with girl usernames/pics/sigs lol,
for example I thought AnimalMother was a girl ops:"
Arte et Marte
for example I thought AnimalMother was a girl ops:"
Arte et Marte
-
- Posts: 7818
- Joined: 2006-12-17 15:14
Re: Ask the [DEV]s a (?) - Part 2
IIRC pyrus said they are actually a negative on urban maps.AnimalMother. wrote:Didn't someone somewhere post about occlusion drawcalls or something like that? Where if you LOS was blocked by a static then it wouldn't render stuff behind it.
Could be taking complete bullcrap but I swear it was mentioned. When I have time I'll see if I can dig up the post.
-
- Posts: 551
- Joined: 2013-12-03 07:49
Re: Ask the [DEV]s a (?) - Part 2
Two questions about inf movement:
1. Is it possible to simulate acceleration so that it would take 1-2 seconds to get up to full sprint?
2. Is it possible to simulate momentum somehow so that you would be able to turn left or right only a little at a time when sprinting?
I'm curious about this because I think one of the gamey aspects of infantry combat is the movement, which lets you sprint instantly and turn while sprinting without losing any speed. So in CQB people often just run around like crazy to avoid getting shot or do those crazy zig-zags when getting shot at from a distance. I know this is kind of a suggestion but AfterDune said I can post it here as a question
1. Is it possible to simulate acceleration so that it would take 1-2 seconds to get up to full sprint?
2. Is it possible to simulate momentum somehow so that you would be able to turn left or right only a little at a time when sprinting?
I'm curious about this because I think one of the gamey aspects of infantry combat is the movement, which lets you sprint instantly and turn while sprinting without losing any speed. So in CQB people often just run around like crazy to avoid getting shot or do those crazy zig-zags when getting shot at from a distance. I know this is kind of a suggestion but AfterDune said I can post it here as a question
-
- Posts: 65
- Joined: 2015-05-23 07:57
Re: Ask the [DEV]s a (?) - Part 2
Don't tell me you've never heard of serpentines? That's a completely legit and realistic evasion tactic!fatalsushi83 wrote:
So in CQB people often just run around like crazy to avoid getting shot or do those crazy zig-zags when getting shot at from a distance.
-
- Posts: 470
- Joined: 2013-06-30 16:16
Re: Ask the [DEV]s a (?) - Part 2
By the way, what kind of scope is the officer using in Generation Kill?Strategos wrote:Don't tell me you've never heard of serpentines? That's a completely legit and realistic evasion tactic!
- Zrix
- Posts: 4426
- Joined: 2005-12-02 14:25
Re: Ask the [DEV]s a (?) - Part 2
Edit; nevermind
Last edited by Zrix on 2015-09-30 19:49, edited 1 time in total.
-
- Posts: 551
- Joined: 2013-12-03 07:49
Re: Ask the [DEV]s a (?) - Part 2
@Strategos
I don't have a problem with the tactic itself. The problem is that you can serpentine without any loss of speed, which is completely unrealistic. You can also do a sudden 180 degree turn while sprinting without any loss of speed. If you think about it, it's very gamey.
I don't have a problem with the tactic itself. The problem is that you can serpentine without any loss of speed, which is completely unrealistic. You can also do a sudden 180 degree turn while sprinting without any loss of speed. If you think about it, it's very gamey.