Fractal Softworks Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

Starsector 0.97a is out! (02/02/24); New blog post: Simulator Enhancements (03/13/24)

Pages: [1] 2 3 ... 27

Author Topic: [0.7.2a] ShaderLib Beta 1.2.1b (Legacy)  (Read 238248 times)

Dark.Revenant

  • Admiral
  • *****
  • Posts: 2806
    • View Profile
    • Sc2Mafia
[0.7.2a] ShaderLib Beta 1.2.1b (Legacy)
« on: May 04, 2014, 01:33:25 AM »

NOTICE: This mod is outdated! Click HERE for GraphicsLib.






We also recommend Version Checker to notify you when an update is ready.

Warning: Make sure Starsector is GPU-Accelerated!
ShaderLib will glitch out on older integrated chips!

Having problems?  Visit the Mod Troubleshooting Guide!


What is this?
ShaderLib is an ongoing effort to implement practical shaders in Starsector.  While this library does have major common features, such as the lighting engine and distortion engine, it was developed so that mod developers can write and implement their own shaders and use them within the game.


Features
  • Lighting engine for Starsector; just plug and play!
  • Lighting API to add lighting data for mod-added weapons
  • HDR bloom for bright surfaces
  • Material mapping for customized ship reflectivity
  • Normal mapping for Blinn-Phong contour lighting and specular highlighting
  • Surface mapping for specular intensity and hardness
  • Distortion engine for all kinds of unique space-warping effects
  • Suite of helper functions designed to make implementing shaders quick and easy
  • Shader API to add shaders into the render loop and allow developers to make their shaders usable by other mods
  • User-defined performance settings
  • Several example shaders for developers to get started


System Requirements
Vanilla
  • 1.8 GHz Intel Core i3/i5/i7 CPU
  • 2.3 GHz Intel Core2 CPU
  • 2.6 GHz AMD CPU
256+ MB Video Memory

Minimum
  • 2.0 GHz Intel Core i3/i5/i7 CPU
  • 2.5 GHz Intel Core2 CPU
  • 2.8 GHz AMD CPU
GeForce 6800, Radeon X850, or Intel HD Graphics 3000
384+ MB Video Memory (512 MB with mods)

Low
  • 2.0 GHz Intel Core i3/i5/i7 CPU
  • 2.5 GHz Intel Core2 CPU
  • 2.8 GHz AMD CPU
GeForce 8600, Radeon HD 2600, or Intel HD Graphics 4000
384+ MB Video Memory (512 MB with mods)

Medium
  • 2.2 GHz Intel Core i3/i5/i7 CPU
  • 2.6 GHz Intel Core2 CPU
  • 3.0 GHz AMD CPU
GeForce 8800 or Radeon HD 2900
512+ MB Video Memory (768 MB with mods)

Recommended
  • 2.2 GHz Intel Core i3/i5/i7 CPU
  • 2.6 GHz Intel Core2 CPU
  • 3.0 GHz AMD CPU
GeForce GTX 260 or Radeon HD 4870
512+ MB Video Memory (1024+ MB with mods)


Screenshots



Spoiler













[close]


How to Use
For players: Just download and enable the mod.  You don't have to do anything else; it works right out of the box.  If your computer can't handle ShaderLib, don't download it and don't enable it.  Simple as that.

For modders: If you want to incorporate ShaderLib into your mod, you should follow a setup procedure:
Use the following mod detection code in your ModPlugin class.  If you want to make calls to ShaderLib functions or use ShaderLib objects, you must first check to see that hasShaderLib is true before calling/referencing them!  Note that some scenarios may make this arrangement difficult, requiring ShaderLib for resolving class links.
Code: java
public static boolean hasShaderLib;

@Override
public void onApplicationLoad() {
    hasShaderLib = Global.getSettings().getModManager().isModEnabled("shaderLib");

    if (hasShaderLib) {
        ShaderLib.init();
        LightData.readLightDataCSV("data/lights/your_light_data.csv");
        TextureData.readTextureDataCSV("data/lights/your_texture_data.csv");
    }
}

Material Map: This texture determines the reflectivity of the sprite.  Internally, the lighting engine uses a minimum function (i.e. reflectivity = the darker of the pixel on screen and the corresponding pixel on the material map), so there are limitations on what you can do with a material map.  In general, you want to begin with the original ship sprite and then darken areas that should not reflect as much light.  You can also darken individual color channels to allow interesting effects like having reflected shines being a different color than the hull.  Remember that the material map must have an alpha channel that matches the original sprite's alpha channel.  For implementation, see the example in ShaderLib.  If a sprite lacks a material map, the default is the original sprite (i.e. identical to previous lighting versions).

Normal Map: This texture is difficult to make properly, but the results can be well worth it.  There are many tutorials for making normal maps elsewhere on the Internet, if you are interested in making them for vanilla sprites or your own ships.  However, if you want an easy way out, an adequate normal map can be generated automatically through Photoshop, Crazy Bump, or similar programs, which takes far less time than making a normal map from the ground up.  Remember that the normal map must have an alpha channel that matches the original sprite's alpha channel.  For implementation, see the example in ShaderLib.  If a sprite lacks a normal map, the lighting engine will default to using the old lighting model for that sprite rather than the new Blinn-Phong model.

Surface Map: This texture is completely optional (even more so than the other two).  Surface maps enhance the normal map of the object by influencing how the specularity looks.  The red channel corresponds to luminosity and will cause the ship to appear to glow wherever the red channel is nonzero.  The green channel determines the specular intensity of the object; a value of zero is totally matte while a high value will be very shiny.  The blue channel determines specular hardness, so a value of zero is cartoonishly shiny while a high value is very glossy; a value of 0.2 (or 51 on the integer scale) corresponds to the default behavior.  Remember that the surface map must have an alpha channel that matches the original sprite's alpha channel.  If a sprite lacks a surface map, the lighting engine will substitute red = 0, green = (derived from material map), blue = 0.2.


Warnings
You generally need an OpenGL 3.0-capable card to use the lighting and distortion engines.  Older cards can work, but this is not guaranteed.  Performance may vary, but a GTX 260 or better should be sufficient to run without any performance hit on the default settings, and with settings tweaks virtually any compatible card will work fine.  Mobile drivers are known to have problems with ShaderLib.  Integrated graphics chipsets are NOT guaranteed to work!  If you are using an integrated chip, disable distortions and/or post-processing!





Change Log
1.0.0 (Unreleased)
- Renamed GraphicsLib
- shaderSettings.json renamed to GRAPHICS_OPTIONS.ini
- Added graphical effects plugins previously in Starsector+
- Added data/config/no_self_destruct.csv in case you want your mod-added missiles to not explode automatically

Beta 1.2.1 (February 28, 2016)
- Fixed cover-related glitches and crashes

Beta 1.2.0 (February 26, 2016)
- Updated for Starsector 0.7.2a
- Weapon cover maps supported
- Option defaults improved for users with incompatible hardware
- Benchmark mission improved

Beta 1.1.2 (December 8, 2015)
- Significantly reduced ShaderLib CPU usage
- Added "extraScreenClear" option to shaderSettings.json (set to false to reduce fill rate)

Beta 1.1.1 (November 30, 2015)
- Now ACTUALLY updated for Starsector 0.7a
- Added new asteroid types to lighting maps

Beta 1.1.0 (November 19, 2015)
- Updated texture/lighting content for Starsector 0.7a
- Updated Becnhmark metrics and scoring
- Added optimized SectorMark mission for official benchmarks

Beta 1.07 (June 6, 2015)
- Added Post Processing Shader
- Added color blindness presets
- Added "enablePostProcess" and "colorBlindnessMode" options to shaderSettings.json
- Remade Benchmark mission; added SectorMarks scoring system

Beta 1.06 (March 13, 2015)
- Improved default lighting settings
- Made graphics more compliant; should have fewer glitches, especially on cards that used to have problems

Beta 1.05 (February 16, 2015)
- Improved distortions compatibility (hopefully)
- Made ship skin textures fall back to base hull textures if an entry for the skin doesn't exist

Beta 1.04 (February 16, 2015)
- Improved bloom compatibility (hopefully)
- Adjusted lighting data
- Resolved possible memory leaks

Beta 1.03 (January 8, 2015)
- Additional optimizations
- Fixed loaded missile lighting
- Added Performance Test mission
- Added method to DistortionShader: void removeDistortion(DistortionAPI distortion)
- Added method to LightShader: void removeDistortion(DistortionAPI distortion)

Beta 1.02 (December 8, 2014)
- Code review and cleanup
- Code optimizations: up to a 20% increase in frame rate

Beta 1.01 (November 10, 2014)
- Made framebuffers more compatible, should resolve some bugs
- Added methods to ShaderLib: boolean useBufferEXT(), boolean useBufferARB(), boolean useBufferCore()

Beta 1.0 (November 3, 2014)
- Weapon barrels and loaded missiles are now affected by lighting
- Fixed bug with WaveDistortion

Beta 0.9 (October 23, 2014)
- Updated for Starsector 0.65a
- Shaders no longer draw on top of the UI
- Major stability update
- Shaders should behave more consistently
- Asteroids and missiles are now affected by lighting
- Weapon unders are now affected by lighting (barrels and loaded missiles are broken for now)
- All maps updated to reflect new ship sprites; new maps added for new ships/skins
- ShaderLib settings file renamed to "shaderSettings.json"
- Removed static texture definitions; mods should no longer define textures in settings.json
- Added smart texture loading to dramatically reduce memory usage when options are turned down
- Removed "category" and "key" columns from the texture data CSV
- Added "path" column to the texture data CSV
- Added "loadMaterial" option to shaderSettings.json
- Added "loadSurface" option to shaderSettings.json
- Added "useLargeRipple" option to shaderSettings.json
- Split "brightnessScale" to "intensityScale" and "sizeScale" options in shaderSettings.json
- Added method to DistortionAPI: float getArcAttenuationWidth()
- Several methods renamed or changed in some manner
- Removed ShaderLib.setVanillaViewport()
- Removed weapon "shadows" (the effect never worked quite right)


Alpha 1.7 (August 30, 2014)
- Surface maps added to all vanilla ships and weapons
- Issue with ShaderLib Basic fixed
- Version Checker support added
- Rare crashes fixed
- Benchmark mission added

Alpha 1.66 (July 13, 2014)
- Shaders being disabled no longer stops a ShaderAPI from being loaded (they can double as EveryFrameCombatPlugins now)
- Beam lights and fast projectile lights are more accurate on impact with objects (but not perfect until the next Starsector update)

Alpha 1.65 (July 9, 2014)
- Changed default reload key to F10
- Updated lighting shader to avoid minor graphics glitches on the edges of objects when using surface maps

Alpha 1.64 (July 9, 2014)
- Fixed major memory leak when reloading shaders
- Changed default reload key to F11
- Lighting shader now runs even if no lights are onscreen (smooths performance and makes things more consistent)

Alpha 1.63 (July 8, 2014)
- Fixed weapon blend function override bug

Alpha 1.62 (July 3, 2014)
- Added surface map support (only used if normal maps are enabled)
- Added method to StandardLight: void makePermanent()
- Added method to ShaderLib: void setWeaponShadowDirection(Vector2f direction)
- Added fixed-direction shadows to weapons when the ship is lit up with lights
- Rare "light leaks" eliminated

Alpha 1.61 (June 30, 2014)
- Added "magnitude" column to texture data CSV for normal map magnitude changes per texture
- Modified vanilla ship material maps (darkened and increased contrast, across the board)
- Slightly tweaked vanilla lights

Alpha 1.6 (June 24, 2014)
- Added "reloadKey" option to settings.json
- Added method to ShaderAPI: void destroy()
- Added methods to ShaderLib: int getAuxiliaryBufferTexture(), int getAuxiliaryBufferId()
- Memory usage improved

Alpha 1.52 (June 16, 2014)
- Added "weaponFlashHeight" and "weaponLightHeight" options to settings.json
- Fixed ShaderLib Basic again

Alpha 1.51 (June 11, 2014)
- Added missile material and normal map support, plus vanilla missile material and normal maps (these will not do anything until the next Starsector update)
- Fixed crash for ShaderLib Basic

Alpha 1.5 (June 9, 2014)
- Added texture loader tables; you will need to define your material and normal maps in a csv
- TextureEntry and TextureData added
- Fixed quality-5 bloom causing bloom to disappear
- Significant CPU performance increase with lighting and normal maps

Alpha 1.45 (May 31, 2014)
- Added material maps and normal maps for all vanilla ships and weapons
- Fixed weapon material and normal maps (you can now specify whether it is the hardpoint or turret)
- Minor viewport fixes that may improve compatability with other mods that use OpenGL
- Fixed screen scaling issue in windowed mode when the window resolution is equal to the desktop resolution
- Fixed specularity direction error on point, line, and cone lights
- Lights no longer reflect on phased ships
- Re-adjusted default settings
- Split ShaderLib into two distributions: Basic and Full

Alpha 1.4 (May 27, 2014)
- Fixed normal rotation and direction issues
- Added support for cone-type and directional-type lights
- Added "normalFlatness" option to settings.json
- Removed unnecessary setter methods from LightAPI
- Maximum lights reduced to 372
- Material-mapped hulks now have much less specularity and reflectivity
- Added methods to LightAPI: float getArcStart(), float getArcEnd(), Vector3f getDirection(), float getSpecularIntensity(), float getHeight()
- Added methods to StandardLight: void setArc(float start, float end), void setDirection(Vector3f direction), void setSpecularIntensity(float intensity), void setHeight(float height)

Alpha 1.3 (May 26, 2014)
- Blinn-Phong lighting added to Lighting Engine for cases where a sprite uses a normal map (this feature is off by default and is intended for TC mods and a possible future where more sprites have normal maps)
- Added "enableNormal", "specularIntensity", "specularHardness", and "lightDepth" options to settings.json
- Rare NVIDIA fullscreen "ghosting" issue resolved
- Light data documentation added (in the data/lights folder)
- Custom material maps supported (to use, link a texture to the ship/weapon by adding a key to "graphics" in data/config/settings.json; see example in ShaderLib)
- Custom normal maps supported (to use, link a texture to the ship/weapon by adding a key to "graphics" in data/config/settings.json; see example in ShaderLib)
- Example normal and material maps added for Conquest, Onslaught, and Paragon (the normal maps were machine-generated)

Alpha 1.24 (May 24, 2014)
- Added an alternative low-memory animated ripple
- Decreased graphics memory usage, especially when shaders are disabled
- Fixed file naming standards

Alpha 1.23 (May 23, 2014)
- Restructured internal rendering code

Alpha 1.22 (May 23, 2014)
- Fixed a major issue on some computers involving sprite alignment
- Added method to ShaderLib: void setVanillaViewport()

Alpha 1.21 (May 23, 2014)
- Update to the light and bloom shaders for clarity and slightly better performance
- Changed displayable mod name to "ZZ ShaderLib" so it loads and runs last
- Added "use64BitBuffer" option to settings.json
- Improved color depth

Alpha 1.2 (May 19, 2014)
- Bloom effect added to Lighting Engine (for situations where the lights are particularly bright)
- Added "enableBloom", "bloomQuality", "bloomMips", "bloomScale", and "bloomIntensity" options to settings.json
- Added methods to StandardLight: void setVelocity(Vector2f velocity), void setVelocity2(Vector2f velocity), Vector2f getVelocity(), Vector2f getVelocity2(), Vector2f setOffset(), Vector2f getOffset()
- Added methods to WaveDistortion and RippleDistortion: void setVelocity(Vector2f velocity), Vector2f getVelocity()
- Added methods to ShaderLib: void drawScreenQuad(float scale), void copyScreen(int texture, int textureUnit)
- Added "offset" column to lights CSV (how many pixels behind the projectile to spawn the standard light, which may be useful for missiles; ignored for beams)
- Added "fighterBrightnessScale" option to settings.json (default 0.5)
- Added two arguments (int texture, int textureUnit) to ShaderLib.screenDraw()
- Updated WaveDistortion texture (should act properly now; to get a sphere, set the intensity to 1/4 the size)
- Updated RippleDistortion texture
- Fixed enableLights and enableDistortion settings options
- Updated LightAPI's advance method to return a boolean representing whether it should be destroyed that frame or not

Alpha 1.11 (May 17, 2014)
- Added methods to DistortionAPI: float getArcStart(), float getArcEnd() (allows only a certain subset of the direction vectors to apply)

Alpha 1.1 (May 17, 2014)
- Universal Distortion Engine (DistortionShader) added
- Added "enableDistortion" and "maximumDistortion" options to settings.json
- DistortionAPI added
- Added WaveDistortion type
- Added RippleDistortion type
- Added "flash offset" column to lights CSV (how many pixels behind the projectile to spawn the muzzle flash, which should not be needed for most weapons; ignored for beams)
- Added method to LightAPI: void advance(float amount)
- Internal shaders externalized to the shaders folder (modify at your own risk)
- Some additional documentation added

Alpha 1.05 (May 11, 2014)
- Fixed most of the issues related to animated weapons causing flickering lights

Alpha 1.04 (May 8, 2014)
- Added "brightnessScale" option to settings.json (default 1.0)

Alpha 1.03 (May 6, 2014)
- Added method to LightData: void readLightDataCSVNoOverwrite(String localPath)
- Added method to ShaderLib: int getScreenTexture()
- Added "maximumLineLights" option to settings.json (default 50)
- Serious AMD performance issue resolved; will be slightly faster for nVidia users as well

Alpha 1.02 (May 5, 2014):
- Added method to ShaderLib: ShaderAPI getShaderAPI(Class<? extends ShaderAPI> shaderAPI)
- Fixed problems and possible memory leaks if mods used LightShader.addLight when the user has lights disabled/unsupported
- Documented and expanded StandardLight and LightAPI
- Toned down the vanilla lights

Alpha 1.01 (May 4, 2014):
- AMD Hotfix
« Last Edit: April 15, 2016, 12:12:10 AM by Dark.Revenant »
Logged

Debido

  • Admiral
  • *****
  • Posts: 1183
    • View Profile
Re: [Graphics] ShaderLib Alpha v1.0
« Reply #1 on: May 04, 2014, 01:46:06 AM »

If I haven't said it before, I'll say it again, this is probably one of the single most important user created mods ever.
« Last Edit: May 04, 2014, 01:56:21 AM by Debido »
Logged

Dark.Revenant

  • Admiral
  • *****
  • Posts: 2806
    • View Profile
    • Sc2Mafia
Re: [Graphics] ShaderLib Alpha v1.01
« Reply #2 on: May 04, 2014, 03:20:49 AM »

Small update to fix a major issue some AMD card users were having.
Logged

Dark.Revenant

  • Admiral
  • *****
  • Posts: 2806
    • View Profile
    • Sc2Mafia
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.01)
« Reply #3 on: May 04, 2014, 03:48:53 PM »

Try using the attached light data instead of the original one (just replace the file in data/lights/).  See if you like it better; the lights are significantly subtler.

[attachment deleted by admin]
Logged

kazi

  • Admiral
  • *****
  • Posts: 714
    • View Profile
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.01)
« Reply #4 on: May 04, 2014, 04:05:55 PM »

This looks glorious.

Although the fx are a bit over the top in the screenshots you posted, it still looks so much better than vanilla its not even funny. (my video card even supports Open GL3!)

Will definitely try this out in a few hours once I get a few errands done.
Logged

xenoargh

  • Admiral
  • *****
  • Posts: 5078
  • naively breaking things!
    • View Profile
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.01)
« Reply #5 on: May 04, 2014, 04:06:28 PM »

Looking forward to firing this up when I get done with what I'm doing tonight; prolly will be able to give some detailed feedback by Tues. :)
Logged
Please check out my SS projects :)
Xeno's Mod Pack

Dark.Revenant

  • Admiral
  • *****
  • Posts: 2806
    • View Profile
    • Sc2Mafia
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.02)
« Reply #6 on: May 04, 2014, 11:41:55 PM »

Updated:
- Added method to ShaderLib: ShaderAPI getShaderAPI(Class<? extends ShaderAPI> shaderAPI)
- Fixed problems and possible memory leaks if mods used LightShader.addLight when the user has lights disabled/unsupported
- Documented and expanded StandardLight and LightAPI
- Toned down the vanilla lights
« Last Edit: May 05, 2014, 01:14:41 AM by Dark.Revenant »
Logged

GenBOOM

  • Ensign
  • *
  • Posts: 24
    • View Profile
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.02)
« Reply #7 on: May 05, 2014, 05:23:50 AM »

just gotta say, this is totally awesome
Logged

xenoargh

  • Admiral
  • *****
  • Posts: 5078
  • naively breaking things!
    • View Profile
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.02)
« Reply #8 on: May 06, 2014, 08:06:28 AM »

Took a brief look last night.

1.  It's confusing how to connect up OpenGL code with the shaders.  Definitely needs some documentation :)

2.  The lighting system is slower than is ideal.  Don't get me wrong- first-run alpha and all that, and it certainly works, which is amazing.  But a quick glance at the code reveals that it's not culling stuff outside the POV and it's not using clipping planes, both of which should speed things up by a factor of 10 or more in big scenes.  Right now, it's using 30% of all CPU time, more than Combat.Advance and Combat.Render combined.  I may take a whack at optimizing it when I'm not buried in work, it really will be incredible when it's fast enough :)
Logged
Please check out my SS projects :)
Xeno's Mod Pack

Dark.Revenant

  • Admiral
  • *****
  • Posts: 2806
    • View Profile
    • Sc2Mafia
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.02)
« Reply #9 on: May 06, 2014, 12:33:36 PM »

It actually is culling nearly everything outside the POV (including pixels on the fragment shader, light and foreground objects, the original screen texture copy method, etc.) and there are no places where clipping planes would do anything worthwhile (at worst, it draws a few extra pixels on some ships on the boundaries of the screen, which doesn't affect the CPU).  In my own tests, the shader engine accounts for a bit over 1% of my CPU time (and a small fraction of the overall Starsector load), and some others can confirm this on their machines as well.  What are your specs?

P.S. Some types of documentation are just impractical to make.  I suggest reading some of the tutorials for LWJGL, because giving full documentation for this would require me to basically teach the user OpenGL.  I don't have that kind of time; you can write textbooks on that subject.  The best I can do is provide ample examples, and at some point I'll be commenting the sample shaders a lot more.
« Last Edit: May 06, 2014, 12:37:28 PM by Dark.Revenant »
Logged

xenoargh

  • Admiral
  • *****
  • Posts: 5078
  • naively breaking things!
    • View Profile
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.02)
« Reply #10 on: May 06, 2014, 01:53:29 PM »

It's not the OpenGL stuff that's confusing, it's the "how to connect parts" that is confusing.  Say I write a particle system in an EveryFrameCombatPlugin and I want it to use a shader; now what?  It's not obvious how I connect the bitz; I see ShaderHook but there isn't a general-purpose example of this.

Performance-wise, I'm running on a quad-core Athlon II, 3300MHz per core (not that it matters, since it's not in its own thread) and a reasonably fast ATi GPU (not that that matters, at no time is that the chokepoint). 

I think you're not torture-testing adequately, so you're not seeing real loads. 

Check out performance with Vacuum- open it up and profile it, go to Missions, select Random Battle, and you'll see. 

When huge numbers of projectiles are involved, it's vastly more expensive than anything else; you need to reduce the n^2 load very considerably for it to be reasonably efficient, and the fast way to do that is to do distance culling via GetDistanceSquared() before bothering with the relatively-expensive process of evaluating string comparators, etc.

Trust me, this is something where reducing the search domain before anything else is vital.  Anyhow, I'll try to get to it when I can get to it, if you're not convinced; I doubt if it'll require major refactoring.
Logged
Please check out my SS projects :)
Xeno's Mod Pack

Dark.Revenant

  • Admiral
  • *****
  • Posts: 2806
    • View Profile
    • Sc2Mafia
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.02)
« Reply #11 on: May 06, 2014, 02:18:15 PM »

Are you even using the version in this thread?  The one I PMed you last week is really old and you should not even be getting lights in Vacuum in the first place because there is no light data set up for it.

The projectile tracking code is very deliberately O(n) because it uses linked hash maps/sets, which has O(1) iteration and O(1) insertion/searching.  The only O(n^2) operations are the operations that happen once when a projectile is destroyed, and even then it is only actually O(n^2) if every projectile is destroyed simultaneously.  This can be made O(n) but the overhead involved is not worth it.

I have tested the performance with Exigency fleets in random battle, involving hundreds of tiny lighted missiles flying about at all times.  I threw in my mega-MIRV that shoots 252 missiles just for kicks.  Shaders on/off made absolutely no CPU impact.
Logged

Morrokain

  • Admiral
  • *****
  • Posts: 2143
  • Megalith Dreadnought - Archean Order
    • View Profile
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.02)
« Reply #12 on: May 06, 2014, 03:53:10 PM »

I don't have time to test it atm, but this looks very well done and should really help the game graphically!

Nice Work!
Logged

xenoargh

  • Admiral
  • *****
  • Posts: 5078
  • naively breaking things!
    • View Profile
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.02)
« Reply #13 on: May 06, 2014, 05:12:59 PM »

Quote
Are you even using the version in this thread?
Yes, and I am getting light data from the few beams that share name strings with Vanilla, so it's working, it's just slowing my framerate to a crawl :)

Anyhow, I'll put up profiler shots here in a bit, finishing my quick-fix patch :)
Logged
Please check out my SS projects :)
Xeno's Mod Pack

Debido

  • Admiral
  • *****
  • Posts: 1183
    • View Profile
Re: [Graphics] Dynamic Lights for Starsector! (ShaderLib Alpha v1.02)
« Reply #14 on: May 06, 2014, 05:20:49 PM »

There may be something unique to Vacuum causing it, I have played with ShaderLib on a absolute cluster fudge of a DAKKA mayhem with Eternal Nox's largest battle with just as many if not more projectiles than you see in Vacuum, didn't really go below 20FPS during the height of the battle.

Xeno, can you also post the profile files from Netbeans? Screenshots are one thing, but having the profiles so they can be directly interrogated in another copy of Netbeans is even more useful in helping to diagnose this.
« Last Edit: May 06, 2014, 05:22:49 PM by Debido »
Logged
Pages: [1] 2 3 ... 27