Difference between revisions of "User:Niffiwan"

From FreeSpace Wiki
Jump to: navigation, search
(Stuff TODO:)
 
(4 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
246... no.
 
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.
+
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: ==
 
== I'm most interested in: ==
Line 11: Line 11:
 
* Fixing bugs
 
* 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 :))
 
* 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
 
* git :D
  
Line 23: 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 31: 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
+
* Write up [[CreatingShieldIconsInGimp|my little guide]] on creating shield icons (yes, probably super simple & obvious for anyone artists :))
  
 
=== 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 40: 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 ==
Line 67: Line 69:
 
* https://github.com/scp-fs2open/fs2open.github.com/pulls
 
* https://github.com/scp-fs2open/fs2open.github.com/pulls
 
** is:pr base:master is:merged closed:>2015-07-31
 
** is:pr base:master is:merged closed:>2015-07-31
 +
** is:pr base:master base:fs2_open_3_7_4 is:merged closed:>2016-05-31  (adds RC branch)

Latest revision as of 10:44, 13 February 2017

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