Added autosave support, updated changelog, updated version to 2.4.0

This commit is contained in:
Andrettin 2015-12-04 18:13:53 +01:00
parent bf514a2027
commit b5d66547f7
7 changed files with 45 additions and 23 deletions

View file

@ -31,10 +31,10 @@
#########################
# Stratagus major version
set(STRATAGUS_MAJOR_VERSION 2)
# Stratagus minor version (maximal 99)
set(STRATAGUS_MINOR_VERSION 3)
# Stratagus patch level (maximal 99)
set(STRATAGUS_PATCH_LEVEL 9)
# Stratagus minor version (maximum 99)
set(STRATAGUS_MINOR_VERSION 4)
# Stratagus patch level (maximum 99)
set(STRATAGUS_PATCH_LEVEL 0)
# Stratagus patch level 2
set(STRATAGUS_PATCH_LEVEL2 0)
#########################

19
debian/changelog vendored
View file

@ -1,14 +1,15 @@
stratagus (2.3.9-1) unstable; urgency=low
stratagus (2.4.0-1) unstable; urgency=low
* Introduced OpenGL shaders for pixel scaling
* Add support for semi-transparent building shadows
* Added support for semi-transparent building shadows
* Many cleanups ported from Wyrmgus
* Support individual unit upgrades
* Fix multiplayer out-of-sync issue
* Fix multiplayer race selection
* Fix unit sight not being symmetrical
* Fix build restriction on top not being symmetrical
* Added support individual unit upgrades
* Fixed multiplayer out-of-sync issue
* Fixed multiplayer race selection
* Fixed unit sight not being symmetrical
* Fixed build restriction on top not being symmetrical
* Added support for map-specific unit stats and changing them through the map editor
* Added support for autosaves
-- Tim Felgentreff <timfelgentreff@gmail.com> Wed, 2 Dec 2015 12:41:01 +0100
@ -25,7 +26,7 @@ stratagus (2.3.0-1) unstable; urgency=low
* Added function for key scroll speed (from cybermind)
* Improved network stability (from cybermind)
* Added CPreference::MineNotifications, to show notifications when
player-controlled mine is running low (as in Warcraft 3)
player-controlled mine is running low
* Fix bug #901772: Support for player color changing (from cybermind)
* When right-clicking on mine, selected miners will go to depot
if they are full of resources (from cybermind)
@ -237,7 +238,7 @@ stratagus (2.3.0-1) unstable; urgency=low
bloodlust for strong ones...) (from cybermind)
* Make OpenGL support optional. (from Pali Rohár)
* Fix bug #1117852: Fixed version compilation for MSVC. (from cybermind)
* Correct handling for Warcraft 2 timed spells and health loss for
* Correct handling for timed spells and health loss for
time-to-live ability : the values change every cycle, not every second.
(from cybermind)
* Aility to change values in animation "set-var" by percent.

View file

@ -40,7 +40,20 @@
<ul>
<p/>
<li>2.3 Released</li>
<p/><li>2.4.0 Released<p/></li>
<ul>
<li>Introduced OpenGL shaders for pixel scaling</li>
<li>Added support for semi-transparent building shadows</li>
<li>Many cleanups ported from Wyrmgus</li>
<li>Added support for individual unit upgrades</li>
<li>Fixed multiplayer out-of-sync issue</li>
<li>Fixed multiplayer race selection</li>
<li>Fixed unit sight not being symmetrical</li>
<li>Fixed build restriction on top not being symmetrical</li>
<li>Added support for map-specific unit stats and changing them through the map editor</li>
<li>Added support for autosaves</li>
</ul>
<p/><li>2.3.0 Released<p/></li>
<ul>
<li>Introduced crash dump writing for win32 (from cybermind)</li>
<li>Added ImageListBox, ImageTextField, ImageDropDownWidget (from cybermind)</li>
@ -51,7 +64,7 @@
<li>Added AiSetBuildDepots function (from cybermind)</li>
<li>Added function for key scroll speed (from cybermind)</li>
<li>Improved network stability (from cybermind)</li>
<li>Added CPreference::MineNotifications, to show notifications when player-controlled mine is running low (as in Warcraft 3)</li>
<li>Added CPreference::MineNotifications, to show notifications when player-controlled mine is running low</li>
<li>Fix bug #901772: Support for player color changing (from cybermind)</li>
<li>When right-clicking on mine, selected miners will go to depot if they are full of resources (from cybermind)</li>
<li>Added support for StackTrace library to log call stack into stderr in case of crash (from cybermind)</li>
@ -179,7 +192,7 @@
<li>Added autocast by variable priority (heal the wounded ones, bloodlust for strong ones...) (from cybermind)</li>
<li>Make OpenGL support optional. (from Pali Rohár)</li>
<li>Fix bug #1117852: Fixed version compilation for MSVC. (from cybermind)</li>
<li>Correct handling for Warcraft 2 timed spells and health loss for time-to-live ability : the values change every cycle, not every second. (from cybermind)</li>
<li>Correct handling for timed spells and health loss for time-to-live ability : the values change every cycle, not every second. (from cybermind)</li>
<li>Aility to change values in animation "set-var" by percent. (from cybermind)</li>
<li>Added poison damage which will slowly drain health for POISON_INDEX tics. (from cybermind)</li>
<li>Added fade time in "static-sprite" of DefineDecorations as third argument in table. (from cybermind)</li>

View file

@ -434,7 +434,7 @@ public:
PauseOnLeave(true), AiExplores(true), GrayscaleIcons(false),
IconsShift(false), StereoSound(true), MineNotifications(false),
DeselectInMine(false), NoStatusLineTooltips(false),
ShowOrders(0), ShowNameDelay(0), ShowNameTime(0) {};
ShowOrders(0), ShowNameDelay(0), ShowNameTime(0), AutosaveMinutes(5) {};
bool ShowSightRange; /// Show sight range.
bool ShowReactionRange; /// Show reaction range.
@ -450,9 +450,10 @@ public:
bool DeselectInMine; /// Deselect peasants in mines
bool NoStatusLineTooltips; /// Don't show messages on status line
int ShowOrders; /// How many second show orders of unit on map.
int ShowNameDelay; /// How many cycles need to wait until unit's name popup will appear.
int ShowNameTime; /// How many cycles need to show unit's name popup.
int ShowOrders; /// How many second show orders of unit on map.
int ShowNameDelay; /// How many cycles need to wait until unit's name popup will appear.
int ShowNameTime; /// How many cycles need to show unit's name popup.
int AutosaveMinutes; /// Autosave the game every X minutes; autosave is disabled if the value is 0
std::string SF2Soundfont;/// Path to SF2 soundfont
};

View file

@ -11,7 +11,7 @@
/**@name groups.cpp - The units' groups handling. */
//
// (c) Copyright 1999-2015 by Patrice Fortier, Lutz Sammer,
// Jimmy Salmon and Andrettin
// and Jimmy Salmon
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by

View file

@ -291,6 +291,12 @@ static void GameLogicLoop()
}
}
}
if (Preference.AutosaveMinutes != 0 && !IsNetworkGame() && GameCycle > 0 && (GameCycle % (CYCLES_PER_SECOND * 60 * Preference.AutosaveMinutes)) == 0) { // autosave every X minutes (default is 5), if the option is enabled
//Wyrmgus end
UI.StatusLine.Set(_("Autosave"));
SaveGame("autosave.sav");
}
}
UpdateMessages(); // update messages

View file

@ -33,8 +33,9 @@ class CPreference
bool NoStatusLineTooltips;
unsigned int ShowOrders;
unsigned int ShowNameDelay;
unsigned int ShowNameTime;
unsigned int ShowNameDelay;
unsigned int ShowNameTime;
unsigned int AutosaveMinutes;
std::string SF2Soundfont;
};