X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fcity%2Fconfig.php;h=234f055e31366ab353e1a3c61267a7bb11454458;hb=2e0e0091899925b6fd5e1b147dfcf7f3481614af;hp=c75253d2ea93ca797935e20bb760532de729e68e;hpb=c31ef8f7ef1aae336176a17513cdfb0f7839718c;p=city.git diff --git a/application/city/config.php b/application/city/config.php index c75253d..234f055 100644 --- a/application/city/config.php +++ b/application/city/config.php @@ -1,10 +1,13 @@ * @version 0.0 - * @copyright Copyright (c) 2015 City Developer Team + * @copyright Copyright (c) 2015, 2016 City Developer Team * @license GNU GPL 3.0 or any newer version * * This program is free software: you can redistribute it and/or modify @@ -22,7 +25,7 @@ */ // Some hub-specific configuration like port hostname where we will listen, etc. -$cfg = FrameworkConfiguration::getSelfInstance(); +$cfg = FrameworkBootstrap::getConfigurationInstance(); /****************************************************************************** * General * @@ -46,6 +49,9 @@ $cfg->setConfigEntry('city_info_db_wrapper_class', 'CityInformationDatabaseWrapp // CFG: REGION-INFO-DB-WRAPPER-CLASS $cfg->setConfigEntry('region_info_db_wrapper_class', 'RegionInformationDatabaseWrapper'); +// CFG: GAME-OPTIONS-DB-WRAPPER-CLASS +$cfg->setConfigEntry('game_options_db_wrapper_class', 'CityGameOptionsDatabaseWrapper'); + // CFG: REGION-MAP-DB-WRAPPER-CLASS $cfg->setConfigEntry('region_map_db_wrapper_class', 'RegionMapDatabaseWrapper'); @@ -528,6 +534,9 @@ $cfg->setConfigEntry('city_daemon_welcome_teaser_filter', 'CityDaemonWelcomeTeas // CFG: CITY-DAEMON-BOOTSTRAP-INIT-DAEMON-FILTER $cfg->setConfigEntry('city_daemon_bootstrap_init_daemon_filter', 'CityDaemonBootstrapInitDaemonFilter'); +// CFG: CITY-DAEMON-BOOTSTRAP-EXTRA-BOOTSTRAPPING-FILTER +$cfg->setConfigEntry('city_daemon_bootstrap_extra_bootstrapping_filter', 'CityDaemonBootstrapExtraBootstrappingFilter'); + // CFG: CITY-DAEMON-SHUTDOWN-TASK-HANDLER-FILTER $cfg->setConfigEntry('city_daemon_shutdown_task_handler_filter', 'CityDaemonShutdownTaskHandlerFilter'); @@ -576,5 +585,11 @@ $cfg->setConfigEntry('task_building_growth_interval_delay', 200); // CFG: TASK-BUILDING-GROWTH-MAX-RUNS $cfg->setConfigEntry('task_building_growth_max_runs', 0); -// [EOF] -?> +// CFG: CITY-MAX-INITIAL-XY-EXPANSION-RADIUS +$cfg->setConfigEntry('city_max_initial_xy_expansion_radius', 40); + +// CFG: CITY-MAX-INITIAL-UP-EXPANSION +$cfg->setConfigEntry('city_max_initial_up_expansion', 5); + +// CFG: CITY-MAX-INITIAL-DOWN-EXPANSION +$cfg->setConfigEntry('city_max_initial_down_expansion', 3);