So another trading jump, and another fire-fight. Again I saw those enticing streaks of red cutting through the space ahead of me, and just had to join the battle.
That got me thinking, for those of us whose GPU can't run shaders, the beams of distant weaponry appear as ugly dotted lines due to their aliased thiness. I know this would require code rather than an OXP, but couldn't some mild AA be applied only to laser beams viewed at a distance - so as not to bog down performance too much?
It would make them appear so much nicer without, hopefully, slowing down FPS for those of us on less specced hardware. Or am I being too picky over this one thing?
Anti-aliased beams ONLY?
Moderators: winston, another_commander
- JazHaz
- ---- E L I T E ----
- Posts: 2991
- Joined: Tue Sep 22, 2009 11:07 am
- Location: Enfield, Middlesex
- Contact:
I agree, however antialiasing doesn't really work for single pixel width lines, as far as I know.
JazHaz
Thanks to Gimi, I got an eBook in my inbox tonight (31st May 2014 - Release of Elite Reclamation)!Gimi wrote:Maybe you could start a Kickstarter Campaign to found your £4500 pledge.drew wrote:£4,500 though! <Faints>
Cheers,
Drew.
- Poro
- Deadly
- Posts: 249
- Joined: Sun Jan 03, 2010 1:51 am
- Location: Don't look in your aft view...
- Contact:
Yes, that's certainly true for most graphics chips (I've even seen it worsen the appearence on some single pixel lines), but it would be easy to check for the distance to the player, and make a gernerous guesstimate as to when the line should be bumped up in thickness purely for the AA pass. No?
(This would of course not increase the thickness of the collision boundaries of the beam)
(This would of course not increase the thickness of the collision boundaries of the beam)
- JazHaz
- ---- E L I T E ----
- Posts: 2991
- Joined: Tue Sep 22, 2009 11:07 am
- Location: Enfield, Middlesex
- Contact:
Actually I think keeping it as it is would be best. We could say that space dust is causing the apparent gaps in the beams, blocking the light.
There must be debris and smoke floating around most systems with all the fighting thats happening.
There must be debris and smoke floating around most systems with all the fighting thats happening.
JazHaz
Thanks to Gimi, I got an eBook in my inbox tonight (31st May 2014 - Release of Elite Reclamation)!Gimi wrote:Maybe you could start a Kickstarter Campaign to found your £4500 pledge.drew wrote:£4,500 though! <Faints>
Cheers,
Drew.
- Commander McLane
- ---- E L I T E ----
- Posts: 9520
- Joined: Thu Dec 14, 2006 9:08 am
- Location: a Hacker Outpost in a moderately remote area
- Contact:
I would let it as it is. The visibility of the laser beams in itself is a good indicator of the distance to the fight. The thicker and better visible they are, the closer is the action. So it helps you to judge whether it makes sense to rush in, or the action will be over anyway until you arrive. If all beams looked the same, regardless of their distance, you couldn't tell anymore how far the fight was ahead of you.
So I think it is actually best the way it is.
So I think it is actually best the way it is.
- JensAyton
- Grand Admiral Emeritus
- Posts: 6657
- Joined: Sat Apr 02, 2005 2:43 pm
- Location: Sweden
- Contact:
This will be fixed at some point, but there is no magic AA flag that will handle this case elegantly. It needs to be done using textures, which need to be projected in slightly fiddly ways that are made harder by certain oddities in the way Oolite’s graphics work.
E-mail: [email protected]
- Poro
- Deadly
- Posts: 249
- Joined: Sun Jan 03, 2010 1:51 am
- Location: Don't look in your aft view...
- Contact:
I did actually wonder about that. My one and only time implementing AA in OpenGL allowed only ALL polygons to be AA'ed, or ALL lines. That didn't bother me at the time, but I was curious if one screen element could be singled out for a pass like that.Ahruman wrote:This will be fixed at some point, but there is no magic AA flag that will handle this case elegantly