Skip to content

Commit

Permalink
Update version t 5.5a1, and update licence and ini file documentation…
Browse files Browse the repository at this point in the history
… for AIS
  • Loading branch information
bridgecommand committed Nov 16, 2020
1 parent f55f945 commit 3c34ad1
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Constants.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const irr::f32 PI = 3.1415926535897932384626433832795;
const irr::f32 RAD_IN_DEG = PI/180.0;

//general definitions
const std::string LONGNAME = "Bridge Command 5.4.8";
const std::string VERSION = "5.4";
const std::string LONGNAME = "Bridge Command 5.5 alpha 1";
const std::string VERSION = "5.5a1";

#endif
6 changes: 3 additions & 3 deletions LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ distributed with Bridge Command.
Bridge Command uses the Irrlicht Engine (http://irrlicht.sourceforge.net), the ENet
networking library (http://enet.bespin.org), ASIO, PortAudio, water based on Keith
Lantz FFT water implementation and the RealisticWaterSceneNode by elvman
(https://github.com/elvman/RealisticWaterSceneNode), and the Serial library by
William Woodall. Bridge Command depends on libsndfile, which is released under the
GNU Lesser General Public License version 2.1 or 3.
(https://github.com/elvman/RealisticWaterSceneNode), AIS Parser by Brian C. Lane,
and the Serial library by William Woodall. Bridge Command depends on libsndfile,
which is released under the GNU Lesser General Public License version 2.1 or 3.

The Irrlicht Engine is based in part on the work of the Independent JPEG Group,
the zlib, and libpng.
Expand Down
2 changes: 1 addition & 1 deletion ScenarioChoice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void ScenarioChoice::chooseScenario(std::string& scenarioName, std::string& host

//Make gui elements
irr::core::stringw titleText(LONGNAME.c_str());
titleText.append(L"\nCopyright 2019 James Packer\n\n");
titleText.append(L"\nCopyright 2020 James Packer\n\n");
titleText.append(L"Build: ");
titleText.append(irr::core::stringw(__DATE__));
titleText.append(L" ");
Expand Down
10 changes: 9 additions & 1 deletion doc/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,17 @@ <h3>The map.ini technical specification</h3>
<h4>Example map.ini file</h4>

<pre>
[General]
graphics_mode=2
graphics_width=800
graphics_height=600
graphics_depth=32
zoom_levels=10
udp_send_port=18304
[AIS over UDP]
ais_udp_port=0
[Language]
lang="en"
</pre>

<h4>Parameters and descriptions</h4>
Expand All @@ -179,8 +185,10 @@ <h4>Parameters and descriptions</h4>
<ul>
<li>graphics_mode: 1 is full screen, 2 is windowed</li>
<li>graphics_width: This sets the screen width. If running full screen, this should be a width your graphics card supports.</li>
<li>graphics_height: This sets the screen height. It should be 0.75x the graphics_width value, and should also be supported by your graphics card.</li>
<li>graphics_height: This sets the screen height. This should also be supported by your graphics card if full screen.</li>
<li>graphics_depth: This is the colour depth used when running full screen. It should be supported by your card, and is likely to be one of 16 or 32.</li>
<li>zoom_levels: How many zoom steps are available.</li>
<li>ais_udp_port: If non-zero, the port to listen on for incoming raw AIS data.</li>
<li>udp_send_port: The port used by the Map Controller to send UDP data to Bridge Command.</li>
</ul>
</p>
Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ irr::core::stringw getCredits(){
creditsString.append(L"> Sky image from 0ptikz\n\n");
creditsString.append(L"Many thanks to Ken Trethewey for making his images of the Eddystone lighthouse available.\n\n");

creditsString.append(L"Bridge Command uses the Irrlicht Engine, the ENet networking library, ASIO, PortAudio, water based on Keith Lantz FFT water implementation, RealisticWaterSceneNode by elvman, and the Serial library by William Woodall. Bridge Command depends on libsndfile, which is released under the GNU Lesser General Public License version 2.1 or 3.\n\n");
creditsString.append(L"Bridge Command uses the Irrlicht Engine, the ENet networking library, ASIO, PortAudio, water based on Keith Lantz FFT water implementation, RealisticWaterSceneNode by elvman, AIS Parser by Brian C. Lane, and the Serial library by William Woodall. Bridge Command depends on libsndfile, which is released under the GNU Lesser General Public License version 2.1 or 3.\n\n");

creditsString.append(L"The Irrlicht Engine is based in part on the work of the Independent JPEG Group, the zlib, and libpng.");

Expand Down

0 comments on commit 3c34ad1

Please sign in to comment.