Files
@ r25080:d4c9906d70aa
Branch filter:
Location: cpp/openttd-patchpack/source/src/rev.h - annotation
r25080:d4c9906d70aa
1.0 KiB
text/x-c
Feature: auto-detect map height limit based on generated map
This opens up the true power of the TGP terrain generator, as it
is no longer constrainted by an arbitrary low map height limit,
especially for extreme terrain types.
In other words: on a 1kx1k map with "Alpinist" terrain type, the
map is now really hilly with default settings.
People can still manually limit the map height if they so wish,
and after the terrain generation the limit is stored in the
savegame as if the user set it.
Cheats still allow you to change this value.
This opens up the true power of the TGP terrain generator, as it
is no longer constrainted by an arbitrary low map height limit,
especially for extreme terrain types.
In other words: on a 1kx1k map with "Alpinist" terrain type, the
map is now really hilly with default settings.
People can still manually limit the map height if they so wish,
and after the terrain generation the limit is stored in the
savegame as if the user set it.
Cheats still allow you to change this value.
r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r19944:25a78576fb5e r9085:bfc6f61fcf0c r9085:bfc6f61fcf0c r9085:bfc6f61fcf0c r9085:bfc6f61fcf0c r9085:bfc6f61fcf0c r12914:1909f5c001a1 r23268:0183290253ce r24171:b76f3d07eedd r9457:ecfeb802c57a r23312:bc9643b48a23 r9085:bfc6f61fcf0c r9085:bfc6f61fcf0c r17986:0f8f901991d4 r17986:0f8f901991d4 r9085:bfc6f61fcf0c | /*
* This file is part of OpenTTD.
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file rev.h declaration of OTTD revision dependent variables */
#ifndef REV_H
#define REV_H
extern const char _openttd_revision[];
extern const char _openttd_build_date[];
extern const char _openttd_revision_hash[];
extern const char _openttd_revision_year[];
extern const byte _openttd_revision_modified;
extern const byte _openttd_revision_tagged;
extern const uint32 _openttd_newgrf_version;
bool IsReleasedVersion();
#endif /* REV_H */
|