Hard Light Productions Forums

Modding, Mission Design, and Coding => FS2 Open Coding - The Source Code Project (SCP) => Nightly Builds => Topic started by: SirKnightly on September 19, 2018, 08:46:19 am

Title: Nightly: 19 September 2018 - Revision e04f1b4
Post by: SirKnightly on September 19, 2018, 08:46:19 am
Here is the nightly for 19 September 2018 - Revision e04f1b4



Group: MacOSX
nightly_20180919_e04f1b4-builds-MacOSX.tar.gz (http://swc.fs2downloads.com/builds/nightly/20180919_e04f1b4/nightly_20180919_e04f1b4-builds-MacOSX.tar.gz) (Mirror (http://scp.indiegames.us/builds/nightly/20180919_e04f1b4/nightly_20180919_e04f1b4-builds-MacOSX.tar.gz))


Group: Linux
nightly_20180919_e04f1b4-builds-Linux.tar.gz (http://swc.fs2downloads.com/builds/nightly/20180919_e04f1b4/nightly_20180919_e04f1b4-builds-Linux.tar.gz) (Mirror (http://scp.indiegames.us/builds/nightly/20180919_e04f1b4/nightly_20180919_e04f1b4-builds-Linux.tar.gz))


Group: Win64
nightly_20180919_e04f1b4-builds-Win64.zip (http://swc.fs2downloads.com/builds/nightly/20180919_e04f1b4/nightly_20180919_e04f1b4-builds-Win64.zip) (Mirror (http://scp.indiegames.us/builds/nightly/20180919_e04f1b4/nightly_20180919_e04f1b4-builds-Win64.zip))


Group: Win32
nightly_20180919_e04f1b4-builds-Win32.zip (http://swc.fs2downloads.com/builds/nightly/20180919_e04f1b4/nightly_20180919_e04f1b4-builds-Win32.zip) (Mirror (http://scp.indiegames.us/builds/nightly/20180919_e04f1b4/nightly_20180919_e04f1b4-builds-Win32.zip))

Code: [Select]
------------------------------------------------------------------------
commit da64f28
Author: asarium <Mon Sep 17 20:12:38 2018 +0200>
Commit: asarium <Mon Sep 17 20:12:38 2018 +0200>

    Fix issue with file location flags
 test/src/pilotfile/plr.cpp                     |   2 +-
 test/test_data/pilotfile/data/players/asdf.plr | Bin 0 -> 1364 bytes
 2 files changed, 1 insertion(+), 1 deletion(-)

------------------------------------------------------------------------
commit 45f9ea2
Author: asarium <Sun Sep 16 12:16:23 2018 +0200>
Commit: asarium <Mon Sep 17 19:47:40 2018 +0200>

    Suppress false-positives in valgrind tests
 ci/travis/valgrind.supp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

------------------------------------------------------------------------
commit eb73328
Author: asarium <Fri Jul 27 16:07:52 2018 +0200>
Commit: asarium <Mon Sep 17 19:24:20 2018 +0200>

    Add std::ostream operator to ID class
 code/utils/id.h | 6 ++++++
 1 file changed, 6 insertions(+)

------------------------------------------------------------------------
commit 380ca12
Author: asarium <Sat Jun 2 12:46:41 2018 +0200>
Commit: asarium <Mon Sep 17 19:24:11 2018 +0200>

    Fix clang-tidy issues
 code/libs/jansson.cpp                |  2 +-
 code/pilotfile/pilotfile.h           | 61 ++++++++++++++----------------------
 code/pilotfile/pilotfile_convert.cpp |  8 ++---
 3 files changed, 29 insertions(+), 42 deletions(-)

------------------------------------------------------------------------
commit c7e66e2
Author: asarium <Mon Mar 19 18:50:35 2018 +0100>
Commit: asarium <Mon Sep 17 19:23:18 2018 +0200>

    Delete old pilot files as well when deleting a pilot
 code/playerman/managepilot.cpp | 5 +++++
 1 file changed, 5 insertions(+)

------------------------------------------------------------------------
commit ff911e6
Author: asarium <Sun Feb 11 14:38:21 2018 +0100>
Commit: asarium <Mon Sep 17 19:23:12 2018 +0200>

    More fixes
 code/pilotfile/BinaryFileHandler.cpp |   4 +-
 code/pilotfile/BinaryFileHandler.h   |   2 +-
 code/pilotfile/FileHandler.h         |   2 +-
 code/pilotfile/JSONFileHandler.cpp   |  22 ++--
 code/pilotfile/JSONFileHandler.h     |   4 +-
 code/pilotfile/plr.cpp               |  31 ++++-
 code/playerman/managepilot.cpp       |  46 +++----
 code/stats/scoring.cpp               |  32 +++--
 test/src/pilotfile/plr.cpp           | 240 ++++++++++++++++++++++++++++++++++-
 9 files changed, 323 insertions(+), 60 deletions(-)

------------------------------------------------------------------------
commit c8619dd
Author: asarium <Fri Feb 9 11:03:27 2018 +0100>
Commit: asarium <Mon Sep 17 19:23:05 2018 +0200>

    Fix uninitialized variable error detected by valgrind
 code/network/multi_options.cpp | 3 +++
 1 file changed, 3 insertions(+)

------------------------------------------------------------------------
commit 721b2da
Author: asarium <Mon Feb 5 17:35:22 2018 +0100>
Commit: asarium <Mon Sep 17 19:22:59 2018 +0200>

    Fix copy-paste error
 code/pilotfile/pilotfile_convert.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

------------------------------------------------------------------------
commit e9f4c16
Author: asarium <Fri Mar 3 15:07:43 2017 +0100>
Commit: asarium <Mon Sep 17 19:22:50 2018 +0200>

    Add unit tests for validating pilot loading
 code/object/object.cpp               |  12 ++++
 code/object/object.h                 |  11 ++++
 code/pilotfile/pilotfile_convert.cpp |   1 +
 code/playerman/managepilot.cpp       | 108 +++++++++++++++++++++++++++++++++++
 code/playerman/player.h              |   2 +
 code/stats/scoring.cpp               |  21 +++++++
 code/stats/scoring.h                 |   2 +
 test/src/pilotfile/plr.cpp           |  41 +++++++++++++
 test/src/source_groups.cmake         |   4 ++
 test/src/util/FSTestFixture.cpp      |   8 +++
 test/src/util/FSTestFixture.h        |   1 +
 test/test_data/data/players/asdf.plr | Bin 0 -> 1364 bytes
 12 files changed, 211 insertions(+)

------------------------------------------------------------------------
commit 4eef54c
Author: asarium <Fri Oct 21 10:06:14 2016 +0200>
Commit: asarium <Mon Sep 17 19:22:43 2018 +0200>

    Add JSON reading implementation
 ci/travis/valgrind.supp              |   8 ++
 code/cfile/cfile.cpp                 |   6 +-
 code/cmdline/cmdline.cpp             |   8 --
 code/cmdline/cmdline.h               |   1 -
 code/globalincs/globals.h            |   2 +-
 code/libs/jansson.cpp                |  27 ++++
 code/libs/jansson.h                  |   9 ++
 code/menuui/barracks.cpp             |   2 +-
 code/menuui/playermenu.cpp           |   4 +-
 code/pilotfile/BinaryFileHandler.cpp |  27 +++-
 code/pilotfile/BinaryFileHandler.h   |  11 +-
 code/pilotfile/FileHandler.h         |  10 +-
 code/pilotfile/JSONFileHandler.cpp   | 262 +++++++++++++++++++++++++++++++----
 code/pilotfile/JSONFileHandler.h     |  50 ++++++-
 code/pilotfile/pilotfile.h           |   2 +-
 code/pilotfile/pilotfile_convert.cpp |  62 ++++++++-
 code/pilotfile/plr.cpp               |  86 +++++-------
 code/playerman/managepilot.cpp       |   2 +-
 code/source_groups.cmake             |   2 +
 19 files changed, 472 insertions(+), 109 deletions(-)

------------------------------------------------------------------------
commit f5ba1e4
Author: Artyrm <Mon Sep 17 20:12:58 2018 +0300>
Commit: Artyrm <Mon Sep 17 20:12:58 2018 +0300>

    Training messages fix. Their delay could be too small with voices volume ste to 0.
 code/mission/missiontraining.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

------------------------------------------------------------------------
commit 94a00ca
Author: asarium <Wed Oct 19 23:05:35 2016 +0200>
Commit: asarium <Mon Sep 17 19:06:50 2018 +0200>

    Add reading code to FileHandler
 code/cfile/cfile.cpp                 |  11 +
 code/cfile/cfile.h                   |   7 +
 code/pilotfile/BinaryFileHandler.cpp |  76 ++++++
 code/pilotfile/BinaryFileHandler.h   |  30 +++
 code/pilotfile/FileHandler.h         |  45 +++-
 code/pilotfile/pilotfile.h           |  89 ++++---
 code/pilotfile/pilotfile_convert.h   |  45 ----
 code/pilotfile/plr.cpp               | 468 +++++++++++++++--------------------
 8 files changed, 409 insertions(+), 362 deletions(-)