From 66bbf336c6af7353ef0aeed58002c46543b30635 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 2 Jan 2007 19:19:48 +0000 Subject: (svn r7759) -Merge: makefile rewrite. This merge features: - A proper ./configure, so everything needs to be configured only once, not for every make. - Usage of makedepend when available. This greatly reduces the time needed for generating the dependencies. - A generator for all project files. There is a single file with sources, which is used to generate Makefiles and the project files for MSVC. - Proper support for OSX universal binaries. - Object files for non-MSVC compiles are also placed in separate directories, making is faster to switch between debug and release compiles and it does not touch the directory with the source files. - Functionality to make a bundle of all needed files for for example a nightly or distribution of a binary with all needed GRFs and language files. Note: as this merge moves almost all files, it is recommended to make a backup of your working copy before updating your working copy. --- src/yapf/yapf_settings.h | 68 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/yapf/yapf_settings.h (limited to 'src/yapf/yapf_settings.h') diff --git a/src/yapf/yapf_settings.h b/src/yapf/yapf_settings.h new file mode 100644 index 000000000..193714dd1 --- /dev/null +++ b/src/yapf/yapf_settings.h @@ -0,0 +1,68 @@ +/* $Id$ */ +#if !defined(YAPF_SETTINGS_H) || defined(YS_DEF) + +# ifndef YAPF_SETTINGS_H +# define YAPF_SETTINGS_H +# endif + +# ifndef YS_DEF +/* + * if YS_DEF is not defined, we will only do following declaration: + * typedef struct YapfSettings { + * bool disable_node_optimization; + * uint32 max_search_nodes; + * .... all other yapf related settings ... + * } YapfSettings; + * + * otherwise we will just expand YS_DEF_xx macros and then #undef them + */ +# define YS_DEF_BEGIN typedef struct YapfSettings { +# define YS_DEF(type, name) type name; +# define YS_DEF_END } YapfSettings; + +# endif /* !YS_DEF */ + +# ifndef YS_DEF_BEGIN +# define YS_DEF_BEGIN +# endif // YS_DEF_BEGIN + +# ifndef YS_DEF_END +# define YS_DEF_END +# endif // YS_DEF_END + +YS_DEF_BEGIN + YS_DEF(bool , disable_node_optimization) ///< whether to use exit-dir instead of trackdir in node key + YS_DEF(uint32, max_search_nodes) ///< stop path-finding when this number of nodes visited + YS_DEF(bool , ship_use_yapf) ///< use YAPF for ships + YS_DEF(bool , road_use_yapf) ///< use YAPF for road + YS_DEF(bool , rail_use_yapf) ///< use YAPF for rail + YS_DEF(uint32, road_slope_penalty) ///< penalty for up-hill slope + YS_DEF(uint32, road_curve_penalty) ///< penalty for curves + YS_DEF(uint32, road_crossing_penalty) ///< penalty for level crossing + YS_DEF(bool , rail_firstred_twoway_eol) ///< treat first red two-way signal as dead end + YS_DEF(uint32, rail_firstred_penalty) ///< penalty for first red signal + YS_DEF(uint32, rail_firstred_exit_penalty) ///< penalty for first red exit signal + YS_DEF(uint32, rail_lastred_penalty) ///< penalty for last red signal + YS_DEF(uint32, rail_lastred_exit_penalty) ///< penalty for last red exit signal + YS_DEF(uint32, rail_station_penalty) ///< penalty for non-target station tile + YS_DEF(uint32, rail_slope_penalty) ///< penalty for up-hill slope + YS_DEF(uint32, rail_curve45_penalty) ///< penalty for curve + YS_DEF(uint32, rail_curve90_penalty) ///< penalty for 90-deg curve + YS_DEF(uint32, rail_depot_reverse_penalty) ///< penalty for reversing in the depot + YS_DEF(uint32, rail_crossing_penalty) ///< penalty for level crossing + YS_DEF(uint32, rail_look_ahead_max_signals)///< max. number of signals taken into consideration in look-ahead load balancer + YS_DEF(int32 , rail_look_ahead_signal_p0) ///< constant in polynomial penalty function + YS_DEF(int32 , rail_look_ahead_signal_p1) ///< constant in polynomial penalty function + YS_DEF(int32 , rail_look_ahead_signal_p2) ///< constant in polynomial penalty function + + YS_DEF(uint32, rail_longer_platform_penalty) ///< penalty for longer station platform than train + YS_DEF(uint32, rail_longer_platform_per_tile_penalty) ///< penalty for longer station platform than train (per tile) + YS_DEF(uint32, rail_shorter_platform_penalty) ///< penalty for shorter station platform than train + YS_DEF(uint32, rail_shorter_platform_per_tile_penalty) ///< penalty for shorter station platform than train (per tile) +YS_DEF_END + +#undef YS_DEF_BEGIN +#undef YS_DEF +#undef YS_DEF_END + +#endif /* !YAPF_SETTINGS_H || YS_DEF */ -- cgit v1.2.3-54-g00ecf