Difference between revisions of "User:Niffiwan"

From FreeSpace Wiki
Jump to: navigation, search
(I'm most interested in:)
(Stuff TODO:)
Line 24: Line 24:
 
(TODO: make this a table with what/why/how columns)
 
(TODO: make this a table with what/why/how columns)
  
* APNG support (see KickStarter)
 
* add LUA streamingAnimations
 
 
* add this for nicer C++ string formatting https://cppformat.github.io/latest/index.html
 
* add this for nicer C++ string formatting https://cppformat.github.io/latest/index.html
 
* Case insensitivity everywhere (for Linux) http://www.hard-light.net/forums/index.php?topic=81134.0
 
* Case insensitivity everywhere (for Linux) http://www.hard-light.net/forums/index.php?topic=81134.0
Line 32: Line 30:
 
* Command line pruning (something should be done about this! New Options Menu HO!) http://www.hard-light.net/forums/index.php?topic=86256.0
 
* Command line pruning (something should be done about this! New Options Menu HO!) http://www.hard-light.net/forums/index.php?topic=86256.0
 
* Add option to make HUD message text clearer (and maybe also add alpha/transparency options for hud gauges?) http://www.hard-light.net/forums/index.php?topic=88044.msg1757287#msg1757287
 
* Add option to make HUD message text clearer (and maybe also add alpha/transparency options for hud gauges?) http://www.hard-light.net/forums/index.php?topic=88044.msg1757287#msg1757287
* Write doco for installing OpenAL Soft on Windows
+
 
  
 
=== off the list ===
 
=== off the list ===
  
 +
* APNG support (see KickStarter) (woohoo!)
 +
* add LUA streamingAnimations
 
* (maybe) libVLC for all our video playing needs? lGPLv2 (done by m!m)
 
* (maybe) libVLC for all our video playing needs? lGPLv2 (done by m!m)
 
* 7z archive support (done by m!m)
 
* 7z archive support (done by m!m)
Line 41: Line 41:
 
* Review patch: http://www.hard-light.net/forums/index.php?topic=84567.0 (Yarn - hud extras) (done)
 
* Review patch: http://www.hard-light.net/forums/index.php?topic=84567.0 (Yarn - hud extras) (done)
 
* JSON ship/weapon table dump http://www.hard-light.net/forums/index.php?topic=87497.msg1748691#msg1748691 (in progress by chief1983)
 
* JSON ship/weapon table dump http://www.hard-light.net/forums/index.php?topic=87497.msg1748691#msg1748691 (in progress by chief1983)
 +
* Write doco for installing OpenAL Soft on Windows (can't run FSO on my windows laptop anymore... so on hold)
  
 
== Scripts ==
 
== Scripts ==

Revision as of 10:26, 29 October 2016

Who am I?

246... no.

I do some coding for the Source code project. I also help out with forum support, and write the coding section of the HLP newsletter. Most recently I've joined the Fate of the Galaxy team as a coder/generalist, trying to finish off everything for the first release.

I'm most interested in:

  • Supporting Linux
  • Improving the robustness of the codebase (e.g. see Coverity / Address Sanitiser / PVS studio)
  • Fixing bugs
  • Code reviews to get other peoples features added to FSO, i.e. maintain their momentum (although I feel that this really turns my brain to mush if I do it for too long :))
  • Adding (small) features to the engine to modders find useful
  • git :D

The areas of the code I'm most familiar with are:

  • New pilot code (antipodes 8 / 3.7.0+)
  • HUD gauges
  • ETS

Stuff TODO:

(TODO: make this a table with what/why/how columns)


off the list

Scripts


GCC Address Sanitiser

(Because I'm always forgetting how to do this!)

  • export CXXFLAGS=-fsanitize=address
  • export LDFLAGS=-fsanitize=address
  • sh autogen.sh --enable-debug
  • ./fs2_open_3.7.3_DEBUG 2>&1 | asan_symbolize.py | c++filt


REMEMBER

  • c++filt should be in the binutils package, (probably) also need to install libasan0 (unless something else installs it by default?)
  • asan_symbolize.py
  • REDIRECT STDERR TO STDOUT or you get nothing. NOTHING!

memory overflow