Author Topic: Post-processing  (Read 60158 times)

0 Members and 1 Guest are viewing this topic.

Offline Ace

  • Truth of Babel
  • 212
    • http://www.lordofrigel.com
Problem with cutscenes: solved.
click

@Nighteyes: since saturation, contrast and distort noise are enabled by sexps, and bloom will be enabled by sexps, I don't think there will be any problem to do that :D

It'd be pretty insane to set SEXPs for each and every capital ship that explodes though. It'd be nice to have something added to the current flash code, and have an "advanced flash" option that also adds these shaders.
Ace
Self-plagiarism is style.
-Alfred Hitchcock

 

Offline Sushi

  • Art Critic
  • 211
Problem with cutscenes: solved.
click

@Nighteyes: since saturation, contrast and distort noise are enabled by sexps, and bloom will be enabled by sexps, I don't think there will be any problem to do that :D

It'd be pretty insane to set SEXPs for each and every capital ship that explodes though. It'd be nice to have something added to the current flash code, and have an "advanced flash" option that also adds these shaders.

That was my thought... some of these effects should probably end up as command-line options.

 

Offline Lt.Cannonfodder

  • 210
  • Digitalous Grunteous
Contrast increase, not bloom, seems to be used more in the show. Anyway bloom is overused.
There's actually very little contrast increase done as such in composition stage of the show, but there's lots of bloom going on. And yea, bloom is way overused and I'm all in favor of a more subtle effect.

 

Offline Hery

  • 26
The following version of fragment shader should make bloom look better. However, I really don't like effects of blurring algorithm. IMO it will be better to blur smaller texture with more advanced algorithm, but that will require further changes in rendering engine. Anyways, it is still to early for good looking bloom.

Code: [Select]
#define FLAG_BLOOM
#define FLAG_DISTORT_NOISE
#define FLAG_SATURATION
#define FLAG_CONTRAST

uniform sampler2D tex;

#ifdef FLAG_DISTORT_NOISE
uniform float timer;
uniform float noise_amount;
#endif

#ifdef FLAG_SATURATION
uniform float saturation;
#endif

#ifdef FLAG_CONTRAST
uniform float contrast;
#endif

void main()
{

#ifdef FLAG_DISTORT_NOISE
// Distort noise
float distort_factor = timer * sin(gl_TexCoord[0].x * gl_TexCoord[0].y * 100 + timer);
distort_factor = fmod(distort_factor, 8.0) * fmod(distort_factor, 4.0);

vec2 distort;
if (noise_amount > 0.0)
distort = vec2(fmod(distort_factor, noise_amount), fmod(distort_factor, noise_amount + 0.002));
else
distort = vec2(0, 0);
#else
vec2 distort = vec2(0, 0);
#endif

#ifdef FLAG_BLOOM
vec4 sum = vec4(0);
   vec2 texcoord = vec2(gl_TexCoord[0]) + distort;
   vec4 color_in = texture2D(tex, texcoord);

   int j;
   int i;
   vec4 color_glo;
for( i= -4 ;i < 4; i++)
   {
        for (j = -4; j < 4; j++)
        {
            sum += texture2D(tex, texcoord + vec2(j, i)*0.004) * 0.25;
        }
   }
       if (texture2D(tex, texcoord).r < 0.3)
    {
       color_glo = pow(sum, 2.0)*0.012 + texture2D(tex, texcoord);
    }
    else
    {
        if (texture2D(tex, texcoord).r < 0.5)
        {
            color_glo = pow(sum, 2.0)*0.012 + texture2D(tex, texcoord);
        }
        else
        {
            color_glo = pow(sum, 2.0)*0.0125 + texture2D(tex, texcoord);
        }
    }
color_in = mix(color_in, color_glo, 0.6);

#else
vec4 color_in = texture2D(tex, gl_TexCoord[0].xy + distort);
#endif

#ifdef FLAG_SATURATION
// Saturation
vec4 color_grayscale = dot(color_in, vec4(0.299, 0.587, 0.184, 0));
vec4 color_out = lerp(color_in, color_grayscale,  1 - saturation);
#else
vec4 color_out = color_in;
#endif

#ifdef FLAG_CONTRAST
// Contrast and brightness
vec3 Afactor = vec3(contrast, contrast, contrast);
vec3 Bfactor = vec3(0.5 - 0.5 * contrast, 0.5 - 0.5 * contrast, 0.5 - 0.5 * contrast);
color_out.rgb = color_out.rgb * Afactor + Bfactor;
#endif

// Dithering
//float downsampling_factor = 4;
//float bias = 0.5;
//color_out.rgb = floor(color_out.rgb * downsampling_factor + bias) / downsampling_factor;

gl_FragColor = color_out;
}

 

Offline Zacam

  • Magnificent Bastard
  • Administrator
  • 211
  • I go Sledge-O-Matic on Spammers
    • Minecraft
    • Steam
    • Twitter
    • ModDB Feature
Actually, for blooming capship deaths, why not modify the Flashy Death script to call to instancing of whatever effect you are looking for?
Report MediaVP issues, now on the MediaVP Mantis! Read all about it Here!
Talk with the community on Discord
"If you can keep a level head in all this confusion, you just don't understand the situation"

¤[D+¬>

[08/01 16:53:11] <sigtau> EveningTea: I have decided that I am a 32-bit registerkin.  Pronouns are eax, ebx, ecx, edx.
[08/01 16:53:31] <EveningTea> dhauidahh
[08/01 16:53:32] <EveningTea> sak
[08/01 16:53:40] * EveningTea froths at the mouth
[08/01 16:53:40] <sigtau> i broke him, boys

 
it doesn't seems to work for me actually, maybe i did not install it the way it should.
i ve extract .sdr files in the roots directory run the 3.6.11 r build, activate the post process option in the launcher, then launch your mission but i did not notice anything.
I must have misplaced a file somewhere  :nervous:
$Formula: ( every-time
   ( has-time-elapsed "0" )
   ( Do-Nothing
   )
   ( send-message
      "#Dalek"
      "High"
      "Pro-crasti-nate"
   )
   )
)
+Name: Procratination
+Repeat Count: 99999999999
+Interval: 1

 

Offline The E

  • He's Ebeneezer Goode
  • Moderator
  • 213
  • Nothing personal, just tech support.
    • Steam
    • Twitter
it doesn't seems to work for me actually, maybe i did not install it the way it should.
i ve extract .sdr files in the roots directory run the 3.6.11 r build, activate the post process option in the launcher, then launch your mission but i did not notice anything.
I must have misplaced a file somewhere  :nervous:

The shaders belong in the data\effects directory.
If I'm just aching this can't go on
I came from chasing dreams to feel alone
There must be changes, miss to feel strong
I really need lifе to touch me
--Evergrey, Where August Mourns

 

Offline Angelus

  • 210
  • The Angriest Angel
Same here, can't get this to work, at least not in-mission, the menus otoh change their color from default blue to red, green and yellow in both, FS2 and BtRL.
This effect still occurs, even after i removed the files from the game directories, so  :wtf:.

The only thing i've noticed ( in-mission ) is that the sun bitmaps are a bit bloomy, but none of the new SEXPs seems to work. The shader files are in data/ effects, the launcher flags are set.

Running on a ATI RAdeon HD2600XT.

 

Offline pecenipicek

  • Roast Chicken
  • 211
  • Powered by copious amounts of coffee and nicotine
    • Minecraft
    • Skype
    • Steam
    • Twitter
    • PeceniPicek's own deviantart page
i had a feeling that it'd die the moment it touched ati. i'll test it later today on my laptop's HD3650...
Skype: vrganjko
Ho, ho, ho, to the bottle I go
to heal my heart and drown my woe!
Rain may fall and wind may blow,
and many miles be still to go,
but under a tall tree I will lie!

The Apocalypse Project needs YOU! - recruiting info thread.

 
i got an ati too, that mat explain things  ;7
$Formula: ( every-time
   ( has-time-elapsed "0" )
   ( Do-Nothing
   )
   ( send-message
      "#Dalek"
      "High"
      "Pro-crasti-nate"
   )
   )
)
+Name: Procratination
+Repeat Count: 99999999999
+Interval: 1

 

Offline Hery

  • 26
Angelus, Reprobator: Could you run debug build and send me log it generates? (Data/fs2_open.log)

 

Offline Colonol Dekker

  • HLP is my mistress
  • 213
  • Aken Tigh Dekker- you've probably heard me
    • My old squad sub-domain
How'd it go on peoples nvidia cards? The responses you provide will dictate whether I download this or not. . . . .
Campaigns I've added my distinctiveness to-
- Blue Planet: Battle Captains
-Battle of Neptune
-Between the Ashes 2
-Blue planet: Age of Aquarius
-FOTG?
-Inferno R1
-Ribos: The aftermath / -Retreat from Deneb
-Sol: A History
-TBP EACW teaser
-Earth Brakiri war
-TBP Fortune Hunters (I think?)
-TBP Relic
-Trancsend (Possibly?)
-Uncharted Territory
-Vassagos Dirge
-War Machine
(Others lost to the mists of time and no discernible audit trail)

Your friendly Orestes tactical controller.

Secret bomb God.
That one time I got permabanned and got to read who was being bitxhy about me :p....
GO GO DEKKER RANGERSSSS!!!!!!!!!!!!!!!!!
President of the Scooby Doo Model Appreciation Society
The only good Zod is a dead Zod
NEWGROUNDS COMEDY GOLD, UPDATED DAILY
http://badges.steamprofile.com/profile/default/steam/76561198011784807.png

 

Offline pecenipicek

  • Roast Chicken
  • 211
  • Powered by copious amounts of coffee and nicotine
    • Minecraft
    • Skype
    • Steam
    • Twitter
    • PeceniPicek's own deviantart page
nvidia works fine, i tested it all there.
Skype: vrganjko
Ho, ho, ho, to the bottle I go
to heal my heart and drown my woe!
Rain may fall and wind may blow,
and many miles be still to go,
but under a tall tree I will lie!

The Apocalypse Project needs YOU! - recruiting info thread.

 
Ok here it is :

Code: [Select]
==========================================================================
DEBUG SPEW: No debug_filter.cfg found, so only general, error, and warning
categories can be shown and no debug_filter.cfg info will be saved.
==========================================================================
FreeSpace version: 3.6.11
Passed cmdline options:
  -nomusic
  -spec_exp 15
  -ogl_spec 50
  -spec_static 1.7
  -spec_point 1.2
  -spec_tube 1.5
  -ambient_factor 5
  -env
  -mipmap
  -missile_lighting
  -glow
  -spec
  -normal
  -3dshockwave
  -post_process
  -ballistic_gauge
  -rearm_timer
  -targetinfo
  -3dwarp
  -ship_choice_3d
  -weapon_choice_3d
  -warp_flash
  -mod mediavp
Building file index...
Found root pack 'D:\jeux\Freespace2\mediavp\ma-sdrvfix.vp' with a checksum of 0xeb53ee0a
Found root pack 'D:\jeux\Freespace2\mediavp\MV_Complete.vp' with a checksum of 0x31df7754
Found root pack 'D:\jeux\Freespace2\Boomerang_3610.vp' with a checksum of 0xc6e5afc5
Found root pack 'D:\jeux\Freespace2\FS2OGGcutscenepack.vp' with a checksum of 0x84396e99
Found root pack 'D:\jeux\Freespace2\ma-sdrvfix.vp' with a checksum of 0xeb53ee0a
Found root pack 'D:\jeux\Freespace2\multi-mission-pack.vp' with a checksum of 0x377695e0
Found root pack 'D:\jeux\Freespace2\multi-voice-pack.vp' with a checksum of 0xd50e7442
Found root pack 'D:\jeux\Freespace2\root_fs2.vp' with a checksum of 0xce10d76c
Found root pack 'D:\jeux\Freespace2\smarty_fs2.vp' with a checksum of 0xddeb3b1e
Found root pack 'D:\jeux\Freespace2\sparky_fs2.vp' with a checksum of 0x0389c962
Found root pack 'D:\jeux\Freespace2\sparky_hi_fs2.vp' with a checksum of 0xa11d56f1
Found root pack 'D:\jeux\Freespace2\stu_fs2.vp' with a checksum of 0xd77da83a
Found root pack 'D:\jeux\Freespace2\tango1_fs2.vp' with a checksum of 0x4c25221e
Found root pack 'D:\jeux\Freespace2\tango2_fs2.vp' with a checksum of 0x86920b82
Found root pack 'D:\jeux\Freespace2\tango3_fs2.vp' with a checksum of 0x705e8d71
Found root pack 'D:\jeux\Freespace2\warble_fs2.vp' with a checksum of 0xd85c305d
Searching root 'D:\jeux\Freespace2\mediavp\' ... 32 files
Searching root pack 'D:\jeux\Freespace2\mediavp\ma-sdrvfix.vp' ... 8 files
Searching root pack 'D:\jeux\Freespace2\mediavp\MV_Complete.vp' ... 5253 files
Searching root 'D:\jeux\Freespace2\' ... 302 files
Searching root pack 'D:\jeux\Freespace2\Boomerang_3610.vp' ... 94 files
Searching root pack 'D:\jeux\Freespace2\FS2OGGcutscenepack.vp' ... 10 files
Searching root pack 'D:\jeux\Freespace2\ma-sdrvfix.vp' ... 8 files
Searching root pack 'D:\jeux\Freespace2\multi-mission-pack.vp' ... 110 files
Searching root pack 'D:\jeux\Freespace2\multi-voice-pack.vp' ... 307 files
Searching root pack 'D:\jeux\Freespace2\root_fs2.vp' ... 157 files
Searching root pack 'D:\jeux\Freespace2\smarty_fs2.vp' ... 10 files
Searching root pack 'D:\jeux\Freespace2\sparky_fs2.vp' ... 3027 files
Searching root pack 'D:\jeux\Freespace2\sparky_hi_fs2.vp' ... 1337 files
Searching root pack 'D:\jeux\Freespace2\stu_fs2.vp' ... 2355 files
Searching root pack 'D:\jeux\Freespace2\tango1_fs2.vp' ... 32 files
Searching root pack 'D:\jeux\Freespace2\tango2_fs2.vp' ... 15 files
Searching root pack 'D:\jeux\Freespace2\tango3_fs2.vp' ... 10 files
Searching root pack 'D:\jeux\Freespace2\warble_fs2.vp' ... 52 files
Searching root 'f:\' ... 0 files
Found 19 roots and 13119 files.
AutoLang: Language auto-detection successful...
Setting language to English
TBM  =>  Starting parse of 'mv_strings-lcl.tbm' ...
Initializing OpenAL...
  Using 'Generic Software' as OpenAL sound device...
  OpenAL Vendor     : Creative Labs Inc.
  OpenAL Renderer   : Software
  OpenAL Version    : 1.1

... OpenAL successfully initialized!
Failed to init speech
Initializing OpenGL graphics device at 3840x1024 with 32-bit color...
  Initializing WGL...
  Requested WGL Video values = R: 8, G: 8, B: 8, depth: 32, double-buffer: 1
  Actual WGL Video values    = R: 8, G: 8, B: 8, depth: 32, double-buffer: 1
  OpenGL Vendor     : ATI Technologies Inc.
  OpenGL Renderer   : ATI Radeon HD 4800 Series
  OpenGL Version    : 2.1.8787

  Using extension "GL_EXT_fog_coord".
  Using extension "GL_ARB_multitexture".
  Using extension "GL_ARB_texture_env_add".
  Using extension "GL_ARB_texture_compression".
  Using extension "GL_EXT_texture_compression_s3tc".
  Using extension "GL_EXT_texture_filter_anisotropic".
  Using extension "GL_ARB_texture_env_combine".
  Using extension "GL_EXT_compiled_vertex_array".
  Using extension "GL_EXT_draw_range_elements".
  Using extension "GL_ARB_texture_mirrored_repeat".
  Using extension "GL_ARB_texture_non_power_of_two".
  Using extension "GL_ARB_vertex_buffer_object".
  Using extension "GL_ARB_pixel_buffer_object".
  Using extension "GL_SGIS_generate_mipmap".
  Using extension "GL_EXT_framebuffer_object".
  Using extension "GL_ARB_texture_rectangle".
  Using extension "GL_EXT_bgra".
  Using extension "GL_ARB_texture_cube_map".
  Using extension "GL_EXT_texture_lod_bias".
  Using extension "GL_ARB_point_sprite".
  Using extension "GL_ARB_shading_language_100".
  Using extension "GL_ARB_shader_objects".
  Using extension "GL_ARB_vertex_shader".
  Using extension "GL_ARB_fragment_shader".
  Using extension "GL_ARB_shader_texture_lod".
  Found special extension function "wglSwapIntervalEXT".

  Compiling shader ->  null-v.sdr (null-v.sdr) / null-f.sdr (null-f.sdr) ...
  Compiling shader ->  b-v.sdr (b-v.sdr) / b-f.sdr (b-f.sdr) ...
  Compiling shader ->  b-v.sdr (b-v.sdr) / bg-f.sdr (bg-f.sdr) ...
  Compiling shader ->  l-v.sdr (l-v.sdr) / lb-f.sdr (lb-f.sdr) ...
  Compiling shader ->  l-v.sdr (l-v.sdr) / lbg-f.sdr (lbg-f.sdr) ...
  Compiling shader ->  l-v.sdr (l-v.sdr) / lbgs-f.sdr (lbgs-f.sdr) ...
  Compiling shader ->  l-v.sdr (l-v.sdr) / lbs-f.sdr (lbs-f.sdr) ...
  Compiling shader ->  le-v.sdr (le-v.sdr) / lbgse-f.sdr (lbgse-f.sdr) ...
  Compiling shader ->  le-v.sdr (le-v.sdr) / lbse-f.sdr (lbse-f.sdr) ...
  Compiling shader ->  ln-v.sdr (ln-v.sdr) / lbgn-f.sdr (lbgn-f.sdr) ...
  Compiling shader ->  ln-v.sdr (ln-v.sdr) / lbgsn-f.sdr (lbgsn-f.sdr) ...
  Compiling shader ->  ln-v.sdr (ln-v.sdr) / lbn-f.sdr (lbn-f.sdr) ...
  Compiling shader ->  ln-v.sdr (ln-v.sdr) / lbsn-f.sdr (lbsn-f.sdr) ...
  Compiling shader ->  lne-v.sdr (lne-v.sdr) / lbgsne-f.sdr (lbgsne-f.sdr) ...
  Compiling shader ->  lne-v.sdr (lne-v.sdr) / lbsne-f.sdr (lbsne-f.sdr) ...
  Compiling shader ->  lf-v.sdr (lf-v.sdr) / lfb-f.sdr (lfb-f.sdr) ...
  Compiling shader ->  lf-v.sdr (lf-v.sdr) / lfbg-f.sdr (lfbg-f.sdr) ...
  Compiling shader ->  lf-v.sdr (lf-v.sdr) / lfbgs-f.sdr (lfbgs-f.sdr) ...
  Compiling shader ->  lf-v.sdr (lf-v.sdr) / lfbs-f.sdr (lfbs-f.sdr) ...
  Compiling shader ->  lfe-v.sdr (lfe-v.sdr) / lfbgse-f.sdr (lfbgse-f.sdr) ...
  Compiling shader ->  lfe-v.sdr (lfe-v.sdr) / lfbse-f.sdr (lfbse-f.sdr) ...
  Compiling shader ->  lfn-v.sdr (lfn-v.sdr) / lfbgn-f.sdr (lfbgn-f.sdr) ...
  Compiling shader ->  lfn-v.sdr (lfn-v.sdr) / lfbgsn-f.sdr (lfbgsn-f.sdr) ...
  Compiling shader ->  lfn-v.sdr (lfn-v.sdr) / lfbn-f.sdr (lfbn-f.sdr) ...
  Compiling shader ->  lfn-v.sdr (lfn-v.sdr) / lfbsn-f.sdr (lfbsn-f.sdr) ...
  Compiling shader ->  lfne-v.sdr (lfne-v.sdr) / lfbgsne-f.sdr (lfbgsne-f.sdr) ...
  Compiling shader ->  lfne-v.sdr (lfne-v.sdr) / lfbsne-f.sdr (lfbsne-f.sdr) ...
  Compiling shader ->  l-v.sdr (l-v.sdr) / null-f.sdr (null-f.sdr) ...
  Compiling shader ->  l-v.sdr (l-v.sdr) / lg-f.sdr (lg-f.sdr) ...
  Compiling shader ->  l-v.sdr (l-v.sdr) / lgs-f.sdr (lgs-f.sdr) ...
  Compiling shader ->  l-v.sdr (l-v.sdr) / ls-f.sdr (ls-f.sdr) ...
  Compiling shader ->  le-v.sdr (le-v.sdr) / lgse-f.sdr (lgse-f.sdr) ...
  Compiling shader ->  le-v.sdr (le-v.sdr) / lse-f.sdr (lse-f.sdr) ...
  Compiling shader ->  ln-v.sdr (ln-v.sdr) / lgn-f.sdr (lgn-f.sdr) ...
  Compiling shader ->  ln-v.sdr (ln-v.sdr) / lgsn-f.sdr (lgsn-f.sdr) ...
  Compiling shader ->  ln-v.sdr (ln-v.sdr) / ln-f.sdr (ln-f.sdr) ...
  Compiling shader ->  ln-v.sdr (ln-v.sdr) / lsn-f.sdr (lsn-f.sdr) ...
  Compiling shader ->  lne-v.sdr (lne-v.sdr) / lgsne-f.sdr (lgsne-f.sdr) ...
  Compiling shader ->  lne-v.sdr (lne-v.sdr) / lsne-f.sdr (lsne-f.sdr) ...

  Max texture units: 8 (16)
  Max elements vertices: 2147483647
  Max elements indices: 16777215
  Max texture size: 8192x8192
  Can use compressed textures: YES
  Texture compression available: YES
  Using trilinear texture filter.
  Using GLSL for model rendering.
  Shader Version: 1.30
... OpenGL init is complete!
Size of bitmap info = 705 KB
Size of bitmap extra info = 40 bytes
ANI cursorweb with size 24x24 (25.0% wasted)
GRAPHICS: Initializing default colors...
SCRIPTING: Beginning initialization sequence...
SCRIPTING: Beginning Lua initialization...
LUA: Opening LUA state...
LUA: Initializing base Lua libraries...
LUA: Beginning ADE initialization
ADE: Initializing enumeration constants...
ADE: Assigning Lua session...
SCRIPTING: Beginning main hook parse sequence....
Wokka!  Error opening file (scripting.tbl)!
TABLES: Unable to parse 'scripting.tbl'!  Error code = 5.
SCRIPTING: Inititialization complete.
SCRIPTING: Splash screen overrides checked
SCRIPTING: Splash hook has been run
SCRIPTING: Splash screen conditional hook has been run
Using high memory settings...
  Compiling post-processing shader ->  post-v.sdr / post-f.sdr ...
Fragment shader failed to compile:
Fragment shader failed to compile with the following errors:
WARNING: 0:26: implicit cast from int to float
ERROR: 0:27: 'fmod' : no matching overloaded function found
ERROR: 0:27: 'fmod' : no matching overloaded function found
ERROR: 0:31: 'fmod' : no matching overloaded function found
ERROR: 0:31: 'fmod' : no matching overloaded function found
ERROR: 0:74: '=' :  cannot convert from 'float' to '4-component vector of float'
WARNING: 0:75: implicit cast from int to flERROR! Unable to create fragment shader!
Wokka!  Error opening file (interface.tbl)!
WMCGUI: Unable to parse 'interface.tbl'!  Error code = 5.
TBM  =>  Starting parse of 'mv_effects-sdf.tbm' ...
TBM  =>  Starting parse of 'mv_adveffects-sdf.tbm' ...
ANI 2_radar1 with size 209x170 (33.6% wasted)
Windoze reported 16 joysticks, we found 1
TBM  =>  Starting parse of 'mv_advmuzzle-mfl.tbm' ...
Wokka!  Error opening file (armor.tbl)!
TABLES: Unable to parse 'armor.tbl'!  Error code = 5.
TBM  =>  Starting parse of 'mv_effects-wxp.tbm' ...
TBM  =>  Starting parse of 'mv_adveffects-wxp.tbm' ...
BMPMAN: Found EFF (exp20.eff) with 64 frames at 35 fps.
BMPMAN: Found EFF (ExpMissileHit1.eff) with 44 frames at 30 fps.
BMPMAN: Found EFF (exp05.eff) with 47 frames at 20 fps.
BMPMAN: Found EFF (exp06.eff) with 48 frames at 20 fps.
BMPMAN: Found EFF (exp04.eff) with 60 frames at 20 fps.
BMPMAN: Found EFF (Maxim_Impact.eff) with 23 frames at 30 fps.
ANI Lamprey_Impact with size 80x80 (37.5% wasted)
BMPMAN: Found EFF (Gmuzzle.eff) with 5 frames at 30 fps.
BMPMAN: Found EFF (PWmuzzle.eff) with 4 frames at 30 fps.
BMPMAN: Found EFF (Rmuzzle.eff) with 4 frames at 30 fps.
BMPMAN: Found EFF (Bmuzzle.eff) with 5 frames at 30 fps.
TBM  =>  Starting parse of 'mv_tech-wep.tbm' ...
TBM  =>  Starting parse of 'mv_models-wep.tbm' ...
TBM  =>  Starting parse of 'mv_effects-wep.tbm' ...
TBM  =>  Starting parse of 'mv_adveffects-wep.tbm' ...
TBM  =>  Starting parse of 'mv_trails-shp.tbm' ...
TBM  =>  Starting parse of 'mv_tech-shp.tbm' ...
TBM  =>  Starting parse of 'mv_models-shp.tbm' ...
TBM  =>  Starting parse of 'mv_dragon-shp.tbm' ...
TBM  =>  Starting parse of 'mv_adveffects-shp.tbm' ...
TBM  =>  Starting parse of 'mv_escort-hdg.tbm' ...
TBM  =>  Starting parse of 'mv_effects-str.tbm' ...
loading animated cursor "cursor"
ANI cursor with size 24x24 (25.0% wasted)
Ships.tbl is : INVALID!!!!
Weapons.tbl is : VALID
cfile_init() took 222
Got event GS_EVENT_GAME_INIT (49) in state NOT A VALID STATE (0)
ANI cursor.ani with size 24x24 (25.0% wasted)
Got event GS_EVENT_MAIN_MENU (0) in state GS_STATE_INITIAL_PLAYER_SELECT (37)
Someone passed an extension to bm_load for file 'hammer1.pcx'
ANI 2_mainwalk.ani with size 209x477 (6.8% wasted)
ANI 2_mainflyby.ani with size 509x189 (26.2% wasted)
ANI 2_maincrane.ani with size 192x116 (9.4% wasted)
ANI 2_mainexit.ani with size 319x174 (32.0% wasted)
ANI 2_mainbarracks.ani with size 273x158 (38.3% wasted)
ANI 2_mainreadyroom.ani with size 231x145 (43.4% wasted)
ANI 2_maintechroom.ani with size 69x119 (7.0% wasted)
ANI 2_mainoptions.ani with size 337x206 (19.5% wasted)
ANI 2_maincampaign.ani with size 308x190 (25.8% wasted)
Got event GS_EVENT_TECH_MENU (11) in state GS_STATE_MAIN_MENU (1)
Techroom successfully initialized, now changing tab...
Loading model 'fighter01.pof'
IBX: Found a good IBX/TSB to read for 'fighter01.pof'.
IBX-DEBUG => POF checksum: 0x2a94b7b8, IBX checksum: 0x38c2bcca -- "fighter01.pof"
Frame  0 too long!!: frametime = 0.436 (0.436)
Frame  0 too long!!: frametime = 0.262 (0.262)
Got event GS_EVENT_SIMULATOR_ROOM (58) in state GS_STATE_TECH_MENU (7)
Freeing all existing models...
Frame  0 too long!!: frametime = 0.707 (0.707)
Got event GS_EVENT_START_GAME (1) in state GS_STATE_SIMULATOR_ROOM (20)
=================== STARTING LEVEL LOAD ==================
ANI 2_Loading.ani with size 824x43 (32.8% wasted)
Starting model page in...
Beginning level bitmap paging...
BMPMAN: Found EFF (particleexp01.eff) with 10 frames at 8 fps.
BMPMAN: Found EFF (particlesmoke01.eff) with 88 frames at 30 fps.
BMPMAN: Found EFF (particlesmoke02.eff) with 39 frames at 24 fps.
TBM  =>  Starting parse of 'mv_fireball-fbl.tbm' ...
TBM  =>  Starting parse of 'mv_adveffects-fbl.tbm' ...
BMPMAN: Found EFF (WarpMap01.eff) with 30 frames at 30 fps.
BMPMAN: Found EFF (WarpMap02.eff) with 30 frames at 30 fps.
BMPMAN: Found EFF (rock_exp.eff) with 55 frames at 30 fps.
Loading warp model
Loading model 'warp.pof'
IBX: Found a good IBX/TSB to read for 'warp.pof'.
IBX-DEBUG => POF checksum: 0x3c5e73c9, IBX checksum: 0xc04d2c9d -- "warp.pof"
Model warp.pof has a null moment of inertia!  (This is only a problem if the model is a ship.)
 256
BMPMAN: Found EFF (shieldhit01a.eff) with 23 frames at 21 fps.
BMPMAN: Found EFF (shieldhit02a.eff) with 45 frames at 30 fps.
BMPMAN: Found EFF (shieldhit03a.eff) with 22 frames at 30 fps.
SHOCKWAVE =>  Loading default shockwave model...
Loading model 'shockwave.pof'
IBX: Found a good IBX/TSB to read for 'shockwave.pof'.
IBX-DEBUG => POF checksum: 0xd8be5fd9, IBX checksum: 0x208fb934 -- "shockwave.pof"
BMPMAN: Found EFF (shockwave3d-glow.eff) with 159 frames at 24 fps.
Model shockwave.pof has a null moment of inertia!  (This is only a problem if the model is a ship.)
SHOCKWAVE =>  Default model load: SUCCEEDED!!
MISSION LOAD: 'postprocess'
Starting mission message count : 205
Ending mission message count : 205
Current soundtrack set to -1 in event_music_reset_choices
Current soundtrack set to -1 in event_music_set_soundtrack
Loading model 'fighter01.pof'
IBX: Found a good IBX/TSB to read for 'fighter01.pof'.
IBX-DEBUG => POF checksum: 0x2a94b7b8, IBX checksum: 0x38c2bcca -- "fighter01.pof"
Loading model 'capital01.pof'
IBX: Found a good IBX/TSB to read for 'capital01.pof'.
IBX-DEBUG => POF checksum: 0x9e305e56, IBX checksum: 0x5d3a90c3 -- "capital01.pof"
Potential problem found: Unrecognized type subsystem 'fighterbay', believed to be in ship capital01.pof
Allocating space for at least 25 new ship subsystems ...  a total of 200 is now available (25 in-use).
OpenGL: Created 512x512 FBO!
ANI 2_lock1 with size 56x53 (17.2% wasted)
ANI 2_lockspin with size 100x100 (21.9% wasted)
ANI 2_lead1 with size 26x26 (18.8% wasted)
ANI 2_energy2 with size 86x96 (25.0% wasted)
ANI toggle1 with size 57x20 (37.5% wasted)
ANI weapons1 with size 126x20 (37.5% wasted)
ANI weapons1_b with size 150x20 (37.5% wasted)
ANI 2_toparc1 with size 252x60 (6.3% wasted)
ANI 2_toparc2 with size 35x24 (25.0% wasted)
ANI 2_toparc3 with size 41x29 (9.4% wasted)
ANI 2_leftarc with size 103x252 (1.6% wasted)
ANI 2_rightarc1 with size 103x252 (1.6% wasted)
ANI 2_reticle1 with size 40x24 (25.0% wasted)
ANI targhit1 with size 31x21 (34.4% wasted)
ANI energy1 with size 12x41 (35.9% wasted)
ANI targetview1 with size 137x156 (39.1% wasted)
ANI targetview2 with size 4x96 (25.0% wasted)
ANI targetview3 with size 7x20 (37.5% wasted)
ANI damage1 with size 148x25 (21.9% wasted)
ANI support1 with size 108x24 (25.0% wasted)
ANI objective1 with size 149x21 (34.4% wasted)
ANI wingman1 with size 71x53 (17.2% wasted)
ANI wingman2 with size 35x53 (17.2% wasted)
ANI wingman3 with size 14x53 (17.2% wasted)
ANI netlag1 with size 29x30 (6.3% wasted)
ANI head1 with size 164x132 (48.4% wasted)
ANI time1 with size 47x23 (28.1% wasted)
ANI debris01 with size 51x38 (40.6% wasted)
ANI debris02 with size 26x19 (40.6% wasted)
ANI debris04 with size 36x27 (15.6% wasted)
=================== STARTING LEVEL DATA LOAD ==================
About to page in ships!
ANI shield-f01 with size 112x93 (27.3% wasted)
Loading model 'support2t-01.pof'
IBX: Found a good IBX/TSB to read for 'support2t-01.pof'.
IBX-DEBUG => POF checksum: 0xd9688f1e, IBX checksum: 0x450d963a -- "support2t-01.pof"
Loading model 'support2v-01.pof'
IBX: Found a good IBX/TSB to read for 'support2v-01.pof'.
IBX-DEBUG => POF checksum: 0x976f69e0, IBX checksum: 0x4e18f7cd -- "support2v-01.pof"
BMPMAN: Found EFF (Subach_AniBitmap.eff) with 6 frames at 5 fps.
BMPMAN: Found EFF (PrometheusR_AniBitmap.eff) with 12 frames at 5 fps.
BMPMAN: Found EFF (Prometheus_AniBitmap.eff) with 12 frames at 5 fps.
BMPMAN: Found EFF (Kayser_AniBitmap.eff) with 4 frames at 5 fps.
ANI Kayser_Particle with size 80x80 (37.5% wasted)
ANI Lamprey_Particle with size 92x86 (32.8% wasted)
Loading model 'rockeye.pof'
IBX: Found a good IBX/TSB to read for 'rockeye.pof'.
IBX-DEBUG => POF checksum: 0x25ff4c7f, IBX checksum: 0x541aef89 -- "rockeye.pof"
Loading model 'Tempest.pof'
IBX: Found a good IBX/TSB to read for 'Tempest.pof'.
IBX-DEBUG => POF checksum: 0x33e3ab29, IBX checksum: 0x1d791899 -- "Tempest.pof"
Model Tempest.pof has a null moment of inertia!  (This is only a problem if the model is a ship.)
Loading model 'NewHornet.pof'
IBX: Found a good IBX/TSB to read for 'NewHornet.pof'.
IBX-DEBUG => POF checksum: 0x98d35b7d, IBX checksum: 0xe4ac391c -- "NewHornet.pof"
Loading model 'bombardier.pof'
IBX: Found a good IBX/TSB to read for 'bombardier.pof'.
IBX-DEBUG => POF checksum: 0x03e1b208, IBX checksum: 0x5def0a77 -- "bombardier.pof"
Loading model 'crossbow.pof'
IBX: Found a good IBX/TSB to read for 'crossbow.pof'.
IBX-DEBUG => POF checksum: 0x586f384b, IBX checksum: 0xb14be0e0 -- "crossbow.pof"
Loading model 'trebuchet.pof'
IBX: Found a good IBX/TSB to read for 'trebuchet.pof'.
IBX-DEBUG => POF checksum: 0x688e15f5, IBX checksum: 0xf6c9668d -- "trebuchet.pof"
Loading model 'taga.pof'
IBX: Found a good IBX/TSB to read for 'taga.pof'.
IBX-DEBUG => POF checksum: 0x45b2275e, IBX checksum: 0x3f9f6258 -- "taga.pof"
Loading model 'tagb.pof'
IBX: Found a good IBX/TSB to read for 'tagb.pof'.
IBX-DEBUG => POF checksum: 0x332af7cb, IBX checksum: 0x14d7a019 -- "tagb.pof"
Loading model 'piranha.pof'
IBX: Found a good IBX/TSB to read for 'piranha.pof'.
IBX-DEBUG => POF checksum: 0x0ba39db4, IBX checksum: 0x333b32e2 -- "piranha.pof"
Loading model 'stilettoII.pof'
IBX: Found a good IBX/TSB to read for 'stilettoII.pof'.
IBX-DEBUG => POF checksum: 0x6f4352cf, IBX checksum: 0xc0f267c6 -- "stilettoII.pof"
Loading model 'infyrno.pof'
IBX: Found a good IBX/TSB to read for 'infyrno.pof'.
IBX-DEBUG => POF checksum: 0xaef706c7, IBX checksum: 0x9b2555c2 -- "infyrno.pof"
Loading model 'belial.pof'
IBX: Found a good IBX/TSB to read for 'belial.pof'.
IBX-DEBUG => POF checksum: 0xb8ba8933, IBX checksum: 0x70b7a630 -- "belial.pof"
Loading model 'helios.pof'
IBX: Found a good IBX/TSB to read for 'helios.pof'.
IBX-DEBUG => POF checksum: 0xfd9a4057, IBX checksum: 0xdfb98a48 -- "helios.pof"
Model helios.pof has a null moment of inertia!  (This is only a problem if the model is a ship.)
Loading model 'EMPulse2.pof'
IBX: Found a good IBX/TSB to read for 'EMPulse2.pof'.
IBX-DEBUG => POF checksum: 0x5269eb44, IBX checksum: 0xb7bd5b3a -- "EMPulse2.pof"
Loading model 'hornet.pof'
IBX: Found a good IBX/TSB to read for 'hornet.pof'.
IBX-DEBUG => POF checksum: 0x98d35b7d, IBX checksum: 0xe4ac391c -- "hornet.pof"
Loading model 'debris01.pof'
IBX: Found a good IBX/TSB to read for 'debris01.pof'.
IBX-DEBUG => POF checksum: 0x974f214b, IBX checksum: 0x368eb490 -- "debris01.pof"
Loading model 'debris02.pof'
IBX: Found a good IBX/TSB to read for 'debris02.pof'.
IBX-DEBUG => POF checksum: 0x8e0eed50, IBX checksum: 0x7b2a747e -- "debris02.pof"
Paging in mission messages
Stopping model page in...
ANI 2_radar1.ani with size 209x170 (33.6% wasted)
ANI Lamprey_Impact.ani with size 80x80 (37.5% wasted)
ANI 2_lock1.ani with size 56x53 (17.2% wasted)
ANI 2_lead1.ani with size 26x26 (18.8% wasted)
ANI 2_energy2.ani with size 86x96 (25.0% wasted)
ANI toggle1.ani with size 57x20 (37.5% wasted)
ANI weapons1.ani with size 126x20 (37.5% wasted)
ANI 2_toparc1.ani with size 252x60 (6.3% wasted)
ANI 2_toparc2.ani with size 35x24 (25.0% wasted)
ANI 2_toparc3.ani with size 41x29 (9.4% wasted)
ANI 2_leftarc.ani with size 103x252 (1.6% wasted)
ANI 2_rightarc1.ani with size 103x252 (1.6% wasted)
ANI 2_reticle1.ani with size 40x24 (25.0% wasted)
ANI targhit1.ani with size 31x21 (34.4% wasted)
ANI energy1.ani with size 12x41 (35.9% wasted)
ANI targetview1.ani with size 137x156 (39.1% wasted)
ANI targetview2.ani with size 4x96 (25.0% wasted)
ANI targetview3.ani with size 7x20 (37.5% wasted)
ANI damage1.ani with size 148x25 (21.9% wasted)
ANI support1.ani with size 108x24 (25.0% wasted)
ANI objective1.ani with size 149x21 (34.4% wasted)
ANI wingman1.ani with size 71x53 (17.2% wasted)
ANI wingman2.ani with size 35x53 (17.2% wasted)
ANI wingman3.ani with size 14x53 (17.2% wasted)
ANI netlag1.ani with size 29x30 (6.3% wasted)
ANI head1.ani with size 164x132 (48.4% wasted)
ANI time1.ani with size 47x23 (28.1% wasted)
ANI debris01.ani with size 51x38 (40.6% wasted)
ANI debris02.ani with size 26x19 (40.6% wasted)
ANI debris04.ani with size 36x27 (15.6% wasted)
ANI shield-f01.ani with size 112x93 (27.3% wasted)
ANI Kayser_Particle.ani with size 80x80 (37.5% wasted)
ANI Lamprey_Particle.ani with size 92x86 (32.8% wasted)
User bitmap 'TMP824x43+16'
User bitmap 'TMP824x43+16'
User bitmap 'TMP824x43+16'
User bitmap 'TMP824x43+16'
User bitmap 'TMP256x256+8'
User bitmap 'TMP256x256+8'
User bitmap 'TMP128x128+8'
Bmpman: 1535/4750 bitmap slots in use.
Ending level bitmap paging...
=================== ENDING LOAD ================
Real count = 240,  Estimated count = 425
================================================
Received post for event GS_EVENT_START_BRIEFING during state transtition. Find Allender if you are unsure if this is bad.
Got event GS_EVENT_START_BRIEFING (15) in state GS_STATE_START_GAME (52)
ANI 2_BriefMap with size 918x400 (21.9% wasted)
ANI iconwing01 with size 32x28 (12.5% wasted)
Loading model 'fighter06.pof'
IBX: Found a good IBX/TSB to read for 'fighter06.pof'.
IBX-DEBUG => POF checksum: 0x6559af36, IBX checksum: 0x9a40a843 -- "fighter06.pof"
Loading model 'fighter2t-02.pof'
IBX: Found a good IBX/TSB to read for 'fighter2t-02.pof'.
IBX-DEBUG => POF checksum: 0x861f5e0a, IBX checksum: 0x5e3514c1 -- "fighter2t-02.pof"
Loading model 'bonus2t-02.pof'
IBX: Found a good IBX/TSB to read for 'bonus2t-02.pof'.
IBX-DEBUG => POF checksum: 0x1a90f6ee, IBX checksum: 0x3f61d8d9 -- "bonus2t-02.pof"
Loading model 'fighter2t-04.pof'
IBX: Found a good IBX/TSB to read for 'fighter2t-04.pof'.
IBX-DEBUG => POF checksum: 0xdd47b3e7, IBX checksum: 0xf816a6fd -- "fighter2t-04.pof"
Loading model 'fighter13.pof'
IBX: Found a good IBX/TSB to read for 'fighter13.pof'.
IBX-DEBUG => POF checksum: 0xd89ee32d, IBX checksum: 0x7aee2523 -- "fighter13.pof"
Loading model 'fighter2t-01.pof'
IBX: Found a good IBX/TSB to read for 'fighter2t-01.pof'.
IBX-DEBUG => POF checksum: 0xf7ad8c4f, IBX checksum: 0x14139590 -- "fighter2t-01.pof"
Loading model 'fighter2t-03.pof'
IBX: Found a good IBX/TSB to read for 'fighter2t-03.pof'.
IBX-DEBUG => POF checksum: 0xc51e0d06, IBX checksum: 0x8a7baff1 -- "fighter2t-03.pof"
Loading model 'fighter2t-05.pof'
IBX: Found a good IBX/TSB to read for 'fighter2t-05.pof'.
IBX-DEBUG => POF checksum: 0xa59230ad, IBX checksum: 0xb499bcbf -- "fighter2t-05.pof"
Loading model 'fighter2s-02.pof'
IBX: Found a good IBX/TSB to read for 'fighter2s-02.pof'.
IBX-DEBUG => POF checksum: 0x85ec93bc, IBX checksum: 0xb90433ea -- "fighter2s-02.pof"
BMPMAN: Found EFF (fighter2s-02-glow.eff) with 37 frames at 25 fps.
Loading model 'Bomber2T-03.pof'
IBX: Found a good IBX/TSB to read for 'Bomber2T-03.pof'.
IBX-DEBUG => POF checksum: 0xf62d5e93, IBX checksum: 0x16ce7cf1 -- "Bomber2T-03.pof"
Loading model 'Bonus2t-01.pof'
IBX: Found a good IBX/TSB to read for 'Bonus2t-01.pof'.
IBX-DEBUG => POF checksum: 0xf10b290a, IBX checksum: 0xb56fcc23 -- "Bonus2t-01.pof"
Loading model 'bomber04.pof'
IBX: Found a good IBX/TSB to read for 'bomber04.pof'.
IBX-DEBUG => POF checksum: 0x3da48cc1, IBX checksum: 0x5279a21e -- "bomber04.pof"
Loading model 'bomber05.pof'
IBX: Found a good IBX/TSB to read for 'bomber05.pof'.
IBX-DEBUG => POF checksum: 0x1e5f9164, IBX checksum: 0xefc882ad -- "bomber05.pof"
Loading model 'bomber09.pof'
IBX: Found a good IBX/TSB to read for 'bomber09.pof'.
IBX-DEBUG => POF checksum: 0xeaa1713a, IBX checksum: 0x3ab1268b -- "bomber09.pof"
Loading model 'bomber2t-01.pof'
IBX: Found a good IBX/TSB to read for 'bomber2t-01.pof'.
IBX-DEBUG => POF checksum: 0xbbfa68bc, IBX checksum: 0x11e25089 -- "bomber2t-01.pof"
Loading model 'fighter2v-04.pof'
IBX: Found a good IBX/TSB to read for 'fighter2v-04.pof'.
IBX-DEBUG => POF checksum: 0x035e02f1, IBX checksum: 0x75e7bb7f -- "fighter2v-04.pof"
ANI 2_ssfighter01.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssfighter01.ani
ANI 2_ssfighter06.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssfighter06.ani
ANI 2_ssfighter2t-02.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssfighter2t-02.ani
ANI 2_ssbonus2t-02.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssbonus2t-02.ani
ANI 2_ssfighter2t-04.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssfighter2t-04.ani
ANI 2_ssfighter13.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssfighter13.ani
ANI 2_ssfighter2t-01.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssfighter2t-01.ani
ANI 2_ssfighter2t-03.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssfighter2t-03.ani
ANI 2_ssfighter2t-05.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssfighter2t-05.ani
ANI 2_ssfighter2s-02.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssfighter2s-02.ani
ANI 2_ssbomber2t-03.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssbomber2t-03.ani
ANI 2_ssbonus2t-01.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssbonus2t-01.ani
ANI 2_ssbomber04.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssbomber04.ani
ANI 2_ssbomber05.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssbomber05.ani
ANI 2_ssbomber09.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssbomber09.ani
ANI 2_ssbomber2t-01.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssbomber2t-01.ani
ANI 2_ssfighter2v-03.ani with size 560x368 (28.1% wasted)
SHIP ANI: Found hires version of 2_ssfighter2v-03.ani
ANI iconSD4 with size 56x24 (25.0% wasted)
ANI iconScalpel with size 56x24 (25.0% wasted)
ANI iconflail with size 56x24 (25.0% wasted)
ANI iconPromR with size 56x24 (25.0% wasted)
ANI iconPromS with size 56x24 (25.0% wasted)
ANI iconNewton with size 56x24 (25.0% wasted)
ANI iconKayser with size 56x24 (25.0% wasted)
ANI iconCirce with size 56x24 (25.0% wasted)
ANI iconLich with size 56x24 (25.0% wasted)
Loading model 'tempest_tech.pof'
IBX: Found a good IBX/TSB to read for 'tempest_tech.pof'.
IBX-DEBUG => POF checksum: 0xf780c311, IBX checksum: 0x437c8ef1 -- "tempest_tech.pof"
Model tempest_tech.pof has a null moment of inertia!  (This is only a problem if the model is a ship.)
Loading model 'newhornet_tech.pof'
IBX: Found a good IBX/TSB to read for 'newhornet_tech.pof'.
IBX-DEBUG => POF checksum: 0xe97f1fa7, IBX checksum: 0x785e23c6 -- "newhornet_tech.pof"
Loading model 'crossbow_tech.pof'
IBX: Found a good IBX/TSB to read for 'crossbow_tech.pof'.
IBX-DEBUG => POF checksum: 0x3c2d3c20, IBX checksum: 0x3ba92db3 -- "crossbow_tech.pof"
Loading model 'trebuchet_tech.pof'
IBX: Found a good IBX/TSB to read for 'trebuchet_tech.pof'.
IBX-DEBUG => POF checksum: 0xdf1a4879, IBX checksum: 0xdffb98e3 -- "trebuchet_tech.pof"
Loading model 'piranha_tech.pof'
IBX: Found a good IBX/TSB to read for 'piranha_tech.pof'.
IBX-DEBUG => POF checksum: 0x4334dee5, IBX checksum: 0xfa7523a6 -- "piranha_tech.pof"
Loading model 'stilettoII_tech.pof'
IBX: Found a good IBX/TSB to read for 'stilettoII_tech.pof'.
IBX-DEBUG => POF checksum: 0xf50214c4, IBX checksum: 0x0bb6314c -- "stilettoII_tech.pof"
Loading model 'helios_tech.pof'
IBX: Found a good IBX/TSB to read for 'helios_tech.pof'.
IBX-DEBUG => POF checksum: 0x551ec88b, IBX checksum: 0x018a4544 -- "helios_tech.pof"
Loading model 'empulse2_tech.pof'
IBX: Found a good IBX/TSB to read for 'empulse2_tech.pof'.
IBX-DEBUG => POF checksum: 0x55e483b3, IBX checksum: 0xde0bbd46 -- "empulse2_tech.pof"
ANI 2_SD4.ani with size 332x304 (40.6% wasted)
ANI 2_Scalpel.ani with size 332x304 (40.6% wasted)
ANI 2_Flail2.ani with size 332x304 (40.6% wasted)
ANI 2_PromR.ani with size 332x304 (40.6% wasted)
ANI 2_PromS.ani with size 332x304 (40.6% wasted)
ANI 2_Newton.ani with size 332x304 (40.6% wasted)
ANI 2_Kayser.ani with size 332x304 (40.6% wasted)
ANI 2_Circe.ani with size 332x304 (40.6% wasted)
ANI 2_Lich.ani with size 332x304 (40.6% wasted)
Frame  0 too long!!: frametime = 12.760 (12.760)
Got event GS_EVENT_ENTER_GAME (2) in state GS_STATE_BRIEFING (10)
Entering game at time =  21.354
1792 frames executed in  30.015 seconds,  59.703 frames per second.
Got event GS_EVENT_END_GAME (4) in state GS_STATE_GAME_PLAY (2)
Unloading in mission messages
ANI 2_mainwalk.ani with size 209x477 (6.8% wasted)
ANI 2_mainflyby.ani with size 509x189 (26.2% wasted)
ANI 2_maincrane.ani with size 192x116 (9.4% wasted)
ANI 2_mainexit.ani with size 319x174 (32.0% wasted)
ANI 2_mainbarracks.ani with size 273x158 (38.3% wasted)
ANI 2_mainreadyroom.ani with size 231x145 (43.4% wasted)
ANI 2_maintechroom.ani with size 69x119 (7.0% wasted)
ANI 2_mainoptions.ani with size 337x206 (19.5% wasted)
ANI 2_maincampaign.ani with size 308x190 (25.8% wasted)
Got event GS_EVENT_QUIT_GAME (5) in state GS_STATE_MAIN_MENU (1)
Freeing all existing models...
... Log closed, Tue Aug 11 22:07:45 2009

I have a strange bug , when i push after burner i got a full black screen over here.
My card is a radeon hd4870 gs with 1gb ram, i got 6 gb ram and a i7 processor running under windows 7.
$Formula: ( every-time
   ( has-time-elapsed "0" )
   ( Do-Nothing
   )
   ( send-message
      "#Dalek"
      "High"
      "Pro-crasti-nate"
   )
   )
)
+Name: Procratination
+Repeat Count: 99999999999
+Interval: 1

 

Offline Angelus

  • 210
  • The Angriest Angel
Ok here it is :

*snip*

I have a strange bug , when i push after burner i got a full black screen over here.
My card is a radeon hd4870 gs with 1gb ram, i got 6 gb ram and a i7 processor running under windows 7.


Have that too in FS2, when firing primaries the screen turns blue for a split second ( it happens on the first shot ), firing missiles causes the screen to go black for a couple of seconds, same for the afterburners.
The game is not paused, 'cause i can hear my primaries firing aso.

Post a log tomorrow.


 

Offline Hery

  • 26
It looks like ati doesn't like my shaders at all ;P At least it's not problem with the build.
Angelus, Reprobator: I think you are not using the latest version of my patch. In fact, I should have updated the first post earlier. However, if you use build from that post problem with black screen won't appear although shader won't work anyways.
I will post updated shader source code ASAP.

Thank you for your help :D

 
i ve downloaded the one you just posted, i still have black screen when i use afterburner :p
$Formula: ( every-time
   ( has-time-elapsed "0" )
   ( Do-Nothing
   )
   ( send-message
      "#Dalek"
      "High"
      "Pro-crasti-nate"
   )
   )
)
+Name: Procratination
+Repeat Count: 99999999999
+Interval: 1

 

Offline Angelus

  • 210
  • The Angriest Angel
It looks like ati doesn't like my shaders at all ;P At least it's not problem with the build.
Angelus, Reprobator: I think you are not using the latest version of my patch. In fact, I should have updated the first post earlier. However, if you use build from that post problem with black screen won't appear although shader won't work anyways.
I will post updated shader source code ASAP.

Thank you for your help :D


Thank you, Hery!

The last version was the first i tried ( no blackscreens ), since it didn't work i tried the first one.
I wonder why, although i removed all files from both games, i still have some "effects", either ingame or in the menus ( main, option, ship select ).

In BtrL the menus ( default blue ) change their color to red, yellow and green, and in-mission the sun bitmaps have this "bloomy" effect.
In FS2 only the menus are affected.

I'll post the logs tomorrow, one with the shaders and one without.




 

Offline Hery

  • 26
If you replace content of post-f.sdr with the following code it should be ok.
Code: [Select]
#define FLAG_BLOOM
#define FLAG_DISTORT_NOISE
#define FLAG_SATURATION
#define FLAG_CONTRAST

uniform sampler2D tex;

#ifdef FLAG_DISTORT_NOISE
uniform float timer;
uniform float noise_amount;
#endif

#ifdef FLAG_SATURATION
uniform float saturation;
#endif

#ifdef FLAG_CONTRAST
uniform float contrast;
#endif

void main()
{

#ifdef FLAG_DISTORT_NOISE
// Distort noise
float distort_factor = timer * sin(gl_TexCoord[0].x * gl_TexCoord[0].y * 100 + timer);
distort_factor = mod(distort_factor, 8.0) * mod(distort_factor, 4.0);

vec2 distort;
if (noise_amount > 0.0)
distort = vec2(mod(distort_factor, noise_amount), mod(distort_factor, noise_amount + 0.002));
else
distort = vec2(0, 0);
#else
vec2 distort = vec2(0, 0);
#endif

#ifdef FLAG_BLOOM
vec4 sum = vec4(0);
   vec2 texcoord = vec2(gl_TexCoord[0]) + distort;
   vec4 color_in = texture2D(tex, texcoord);

   int j;
   int i;
   vec4 color_glo;
for( i= -4 ;i < 4; i++)
   {
        for (j = -4; j < 4; j++)
        {
            sum += texture2D(tex, texcoord + vec2(j, i)*0.004) * 0.25;
        }
   }
       if (texture2D(tex, texcoord).r < 0.3)
    {
       color_glo = pow(sum, 2.0)*0.012 + texture2D(tex, texcoord);
    }
    else
    {
        if (texture2D(tex, texcoord).r < 0.5)
        {
            color_glo = pow(sum, 2.0)*0.012 + texture2D(tex, texcoord);
        }
        else
        {
            color_glo = pow(sum, 2.0)*0.0125 + texture2D(tex, texcoord);
        }
    }
color_in = mix(color_in, color_glo, 0.6);

#else
vec4 color_in = texture2D(tex, gl_TexCoord[0].xy + distort);
#endif

#ifdef FLAG_SATURATION
// Saturation
vec4 color_grayscale;
color_grayscale.rgb = dot(color_in, vec4(0.299, 0.587, 0.184, 0));
vec4 color_out = lerp(color_in, color_grayscale,  1 - saturation);
#else
vec4 color_out = color_in;
#endif

#ifdef FLAG_CONTRAST
// Contrast and brightness
vec3 Afactor = vec3(contrast, contrast, contrast);
vec3 Bfactor = vec3(0.5 - 0.5 * contrast, 0.5 - 0.5 * contrast, 0.5 - 0.5 * contrast);
color_out.rgb = color_out.rgb * Afactor + Bfactor;
#endif

// Dithering
//float downsampling_factor = 4;
//float bias = 0.5;
//color_out.rgb = floor(color_out.rgb * downsampling_factor + bias) / downsampling_factor;

gl_FragColor = color_out;
}
« Last Edit: August 11, 2009, 05:46:01 pm by Hery »

 

Offline Nighteyes

  • 211
How hard will it be to add some film grain with a controller for the amount? will an image of grain added on top of everything else(be the last post processing effect added) be enough? is it possible to add *.eff animation of 2-4 frames of animated grain? :)