Pages: [1]
  Print  
Author Topic: Bloom reflection effect  (Read 1870 times)
fromhell
because leilei is trademarked
Administrator
GET A LIFE!
**********

Cakes 1202
Posts: 13503



WWW
« on: October 21, 2011, 01:25:08 am »

look what I hacked up


Obviously too distracting for a default option, it's actually quite a simple tr_bloom.c edit
Logged

NEVER ASK AN INDIE DEV WHEN IT'S DONE

TWITER.
STEAM GROUP
Cacatoes
Banned for leasing own account
Posts a lot
*

Cakes 64
Posts: 1429


also banned for baiting another to violate rules


« Reply #1 on: October 21, 2011, 04:21:34 am »

Looks sunny and warming, though a bit imperfect and overdistracting as you said. Liz would love it.
Logged

Todo: Walk the cat.
Udi
Member


Cakes 26
Posts: 536


i do my own stunts


WWW
« Reply #2 on: October 21, 2011, 05:55:20 am »

Can you filter it by source? The reflection coming from the skybox is neat, but the flag and explosions seem unrealistic.
Logged

http://udionline.hu/en/projektek/openarena/
Todo list: 1. q3dm17 textures replacement (95% done)
Gig
Millenial poster
**

Cakes 39
Posts: 2297


WWW
« Reply #3 on: October 21, 2011, 07:03:30 am »

Very nice, it looks better than classic lens flare... but maybe it is distracting (more items cause bloom than lens flare).
Logged
Graion Dilach
Member


Cakes 13
Posts: 398



« Reply #4 on: October 21, 2011, 09:16:48 am »

I love that effect.

Distracting but nice.
Logged

To-do: Bot writing manual.
WingedPanther
Member


Cakes 4
Posts: 190



« Reply #5 on: October 21, 2011, 12:33:02 pm »

Looks cool, but I would immediately turn it off, just like rocket smoke Smiley
Logged

Programming is a branch of mathematics.
dbX
Member


Cakes 11
Posts: 200

Shazpaca!


WWW
« Reply #6 on: October 21, 2011, 01:50:43 pm »

The effect is cool, but it should be only limited to sky boxes and some other light sources, not rockets and grenades and such because it's really weird and distracting.
Logged

In defeat we learn.
fromhell
because leilei is trademarked
Administrator
GET A LIFE!
**********

Cakes 1202
Posts: 13503



WWW
« Reply #7 on: October 22, 2011, 02:09:01 pm »

This is the new bloom function (combined with tcpp's cascaded bloom)

http://openarena.ws/crap/tr_bloom.c

it's a bit of a mess. What i'd like to do is use one more bloom texture with only the skybox and flares, with some depthwrite/read magic
Logged

NEVER ASK AN INDIE DEV WHEN IT'S DONE

TWITER.
STEAM GROUP
fromhell
because leilei is trademarked
Administrator
GET A LIFE!
**********

Cakes 1202
Posts: 13503



WWW
« Reply #8 on: October 24, 2011, 04:13:43 am »

is oa too dark?
Logged

NEVER ASK AN INDIE DEV WHEN IT'S DONE

TWITER.
STEAM GROUP
Gig
Millenial poster
**

Cakes 39
Posts: 2297


WWW
« Reply #9 on: October 24, 2011, 04:52:00 am »

Unlplayable, but nice "trip"...
Logged
dbX
Member


Cakes 11
Posts: 200

Shazpaca!


WWW
« Reply #10 on: October 24, 2011, 05:17:36 am »


Look at all those pretty colors Cheesy With this oa goes from "too dark" to too colorful, but unplayable.
Logged

In defeat we learn.
Cacatoes
Banned for leasing own account
Posts a lot
*

Cakes 64
Posts: 1429


also banned for baiting another to violate rules


« Reply #11 on: October 24, 2011, 06:51:14 am »

Ehe, that's experimental, I like it. The railgun hum is sweet, saturation gives analogic warmth.

Consider making the videos public.
Logged

Todo: Walk the cat.
WingedPanther
Member


Cakes 4
Posts: 190



« Reply #12 on: October 24, 2011, 07:51:47 am »

reflection bloom would give me a headache.  Ouchies.
Logged

Programming is a branch of mathematics.
Gig
Millenial poster
**

Cakes 39
Posts: 2297


WWW
« Reply #13 on: November 06, 2011, 05:24:54 am »

Talking about Bloom ("classic" bloom, not the new effect Fromhell proposed above!)... I just tried with latest executable (22) and OAX (B50), and two bugs are still there.
One is the effect that, when it "exits" from the screens, appears for some pixels on the opposite side of the screen.
http://openarena.ws/board/index.php?topic=3578.msg33455#msg33455
The other is: if "bloom" is enabled (r_bloom 1) and the texture quality is set to 16 bits (r_texturebits 16), some sort of semi-transparent square appears on the bottom left corner of the screen. (first said here).
Logged
rambokalle
THIS ONE POST HERE SHOULD DO IT.


Cakes 0
Posts: 1


« Reply #14 on: January 29, 2012, 05:46:26 am »

...
One is the effect that, when it "exits" from the screens, appears for some pixels on the opposite side of the screen.
http://openarena.ws/board/index.php?topic=3578.msg33455#msg33455
...[/url]).

There seems to be some bloom texture clamping issues in tr_bloom.c, so occasional bleeding on the screen edges can appear. This is really easy to fix, for example:

Code:

data = ri.Hunk_AllocateTempMemory( bloom.screen.width * bloom.screen.height * 4 );
Com_Memset( data, 0, bloom.screen.width * bloom.screen.height * 4 );
#ifdef GL_CLAMP_TO_EDGE
bloom.screen.texture = R_CreateImage( "***bloom screen texture***", data, bloom.screen.width, bloom.screen.height, qfalse, qfalse, GL_CLAMP_TO_EDGE );
#else
bloom.screen.texture = R_CreateImage( "***bloom screen texture***", data, bloom.screen.width, bloom.screen.height, qfalse, qfalse, GL_CLAMP );
#endif
ri.Hunk_FreeTempMemory( data );

data = ri.Hunk_AllocateTempMemory( bloom.effect.width * bloom.effect.height * 4 );
Com_Memset( data, 0, bloom.effect.width * bloom.effect.height * 4 );
#ifdef GL_CLAMP_TO_EDGE
bloom.effect.texture = R_CreateImage( "***bloom effect texture***", data, bloom.effect.width, bloom.effect.height, qfalse, qfalse, GL_CLAMP_TO_EDGE );
#else
bloom.effect.texture = R_CreateImage( "***bloom effect texture***", data, bloom.effect.width, bloom.effect.height, qfalse, qfalse, GL_CLAMP );
#endif
ri.Hunk_FreeTempMemory( data );
bloom.started = qtrue;


Now the bleeding should be gone.  Wink
Logged
Gig
Millenial poster
**

Cakes 39
Posts: 2297


WWW
« Reply #15 on: January 29, 2012, 06:08:45 am »

From what I know, Fromhell already fixed that "bleeding" problem in version 25 executables (see). Maybe (s)he may compare the two solutions, maybe one is more efficient than the other one?

Anyway, if you are comfortable with bloom source code, maybe you may fix and resolve the other bloom problem that affected 0.8.5 executables: if texture quality was set to 16 bit, a strange semi-transparent "square" appeared in the lower left corner of the screen. Fromhell "worked around" that (again, from version 25 executables) by forcing bloom to shutdown itself unless the user had previously forced 32 bit textures (FH said that bloom was never designed to work with 16 bit textures): for me it's not a problem to do have bloom with 16 bit textures, but it's a problem to have people need to manually force another option -leaving default texture quality disables bloom, too- with no clear instructions in menu nor console to help users to understand what they have to do! Maybe you may find a fix for that 16 bit problem, and then that auto-disabling check may be removed?

OpenArena 0.8.8 executables will also introduce a new bloom version, called "Cascaded blur" or "Cascaded bloom". This should have been the new default, but we found a problem with it (something that may resemble the "bleeding" bug, but not exactly the same, see this screenshot) and its author said he will not be able to work on it before march or similar... so for the moment the new kind of bloom has been disabled by default.
Logged
GrosBedo
Member


Cakes 14
Posts: 674


« Reply #16 on: February 05, 2012, 06:26:52 am »

Great visual effect! And it seems to be not take too much cpu cycles. I like it!

Will it ever be implemented in OA? Please write it down on the TODO list, the effect is very cool!
Logged
Neon_Knight
Millenial poster
**

Cakes 45
Posts: 2427


Trickster God.


WWW
« Reply #17 on: February 05, 2012, 06:47:49 am »

IICR, it's already present in 0.8.8.
Logged


My maps

Want to contribute?
Read this, this and this first.
GrosBedo
Member


Cakes 14
Posts: 674


« Reply #18 on: February 05, 2012, 08:41:50 am »

IICR, it's already present in 0.8.8.

Really? I thought it was the other version of the bloom effect. Great!
Logged
Gig
Millenial poster
**

Cakes 39
Posts: 2297


WWW
« Reply #19 on: February 05, 2012, 06:08:48 pm »

Then, how to enable it? Are you sure you are not confusing this with cascaded blur/cascaded bloom?
Logged
Neon_Knight
Millenial poster
**

Cakes 45
Posts: 2427


Trickster God.


WWW
« Reply #20 on: February 05, 2012, 06:17:40 pm »

It's r_bloom_reflection we're talking about?
Logged


My maps

Want to contribute?
Read this, this and this first.
Gig
Millenial poster
**

Cakes 39
Posts: 2297


WWW
« Reply #21 on: February 05, 2012, 06:20:30 pm »

Sounds likely. You are the first that mentions that variable. I'll have to check this...
Logged
Pages: [1]
  Print  
 
Jump to: