diff --git a/projects/openttd_vs80.vcproj b/projects/openttd_vs80.vcproj index ddc02a6ab7..98e8d78982 100644 --- a/projects/openttd_vs80.vcproj +++ b/projects/openttd_vs80.vcproj @@ -3451,6 +3451,10 @@ + + @@ -3467,6 +3471,10 @@ RelativePath=".\..\src\pathfinder\pathfinder_type.h" > + + - - @@ -3503,10 +3507,6 @@ - - diff --git a/projects/openttd_vs90.vcproj b/projects/openttd_vs90.vcproj index f2501b02bd..ad626ece37 100644 --- a/projects/openttd_vs90.vcproj +++ b/projects/openttd_vs90.vcproj @@ -3448,6 +3448,10 @@ + + @@ -3464,6 +3468,10 @@ RelativePath=".\..\src\pathfinder\pathfinder_type.h" > + + - - @@ -3500,10 +3504,6 @@ - - diff --git a/source.list b/source.list index 0e13423f88..0bc11a7e33 100644 --- a/source.list +++ b/source.list @@ -814,10 +814,12 @@ network/core/udp.cpp network/core/udp.h # Pathfinder +pathfinder/follow_track.hpp pathfinder/opf/opf_ship.cpp pathfinder/opf/opf_ship.h pathfinder/pathfinder_func.h pathfinder/pathfinder_type.h +pathfinder/pf_performance_timer.hpp # NPF pathfinder/npf/aystar.cpp @@ -825,11 +827,9 @@ pathfinder/npf/aystar.h pathfinder/npf/queue.cpp pathfinder/npf/queue.h pathfinder/npf/npf.cpp -pathfinder/npf/npf.h pathfinder/npf/npf_func.h # YAPF -pathfinder/yapf/follow_track.hpp pathfinder/yapf/nodelist.hpp pathfinder/yapf/yapf.h pathfinder/yapf/yapf.hpp diff --git a/src/pathfinder/yapf/follow_track.hpp b/src/pathfinder/follow_track.hpp similarity index 98% rename from src/pathfinder/yapf/follow_track.hpp rename to src/pathfinder/follow_track.hpp index d1ad1c1991..62e36e1bc8 100644 --- a/src/pathfinder/yapf/follow_track.hpp +++ b/src/pathfinder/follow_track.hpp @@ -12,10 +12,14 @@ #ifndef FOLLOW_TRACK_HPP #define FOLLOW_TRACK_HPP -#include "yapf.hpp" -#include "../../depot_map.h" -#include "../../roadveh.h" -#include "../../train.h" +#include "../depot_map.h" +#include "../pbs.h" +#include "../roadveh.h" +#include "../station_base.h" +#include "../train.h" +#include "../tunnelbridge.h" +#include "../tunnelbridge_map.h" +#include "pf_performance_timer.hpp" /** Track follower helper template class (can serve pathfinders and vehicle * controllers). See 6 different typedefs below for 3 different transport diff --git a/src/pathfinder/pf_performance_timer.hpp b/src/pathfinder/pf_performance_timer.hpp new file mode 100644 index 0000000000..a7b3fda5ea --- /dev/null +++ b/src/pathfinder/pf_performance_timer.hpp @@ -0,0 +1,82 @@ +/* $Id$ */ + +/* + * 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 . + */ + +/** @file pf_performance_timer.hpp Performance timer for pathfinders. */ + +#ifndef PF_PERFORMANCE_TIMER_HPP +#define PF_PERFORMANCE_TIMER_HPP + +extern uint64 ottd_rdtsc(); + +struct CPerformanceTimer +{ + int64 m_start; + int64 m_acc; + + CPerformanceTimer() : m_start(0), m_acc(0) {} + + FORCEINLINE void Start() + { + m_start = QueryTime(); + } + + FORCEINLINE void Stop() + { + m_acc += QueryTime() - m_start; + } + + FORCEINLINE int Get(int64 coef) + { + return (int)(m_acc * coef / QueryFrequency()); + } + + FORCEINLINE int64 QueryTime() + { + return ottd_rdtsc(); + } + + FORCEINLINE int64 QueryFrequency() + { + return ((int64)2200 * 1000000); + } +}; + +struct CPerfStartReal +{ + CPerformanceTimer *m_pperf; + + FORCEINLINE CPerfStartReal(CPerformanceTimer& perf) : m_pperf(&perf) + { + if (m_pperf != NULL) m_pperf->Start(); + } + + FORCEINLINE ~CPerfStartReal() + { + Stop(); + } + + FORCEINLINE void Stop() + { + if (m_pperf != NULL) { + m_pperf->Stop(); + m_pperf = NULL; + } + } +}; + +struct CPerfStartFake +{ + FORCEINLINE CPerfStartFake(CPerformanceTimer& perf) {} + FORCEINLINE ~CPerfStartFake() {} + FORCEINLINE void Stop() {} +}; + +typedef CPerfStartFake CPerfStart; + +#endif /* PF_PERFORMANCE_TIMER_HPP */ diff --git a/src/pathfinder/yapf/yapf.hpp b/src/pathfinder/yapf/yapf.hpp index a8e887a13b..ed49f1b1a9 100644 --- a/src/pathfinder/yapf/yapf.hpp +++ b/src/pathfinder/yapf/yapf.hpp @@ -12,100 +12,10 @@ #ifndef YAPF_HPP #define YAPF_HPP -#include "../../openttd.h" -#include "../../vehicle_base.h" -#include "../../road_map.h" -#include "../../tunnel_map.h" -#include "../../bridge_map.h" -#include "../../tunnelbridge_map.h" -#include "../../bridge.h" -#include "../../station_map.h" -#include "../../tile_cmd.h" #include "../../landscape.h" -#include "yapf.h" #include "../pathfinder_func.h" -#include "../../pbs.h" -#include "../../waypoint_base.h" -#include "../../debug.h" -#include "../../settings_type.h" -#include "../../tunnelbridge.h" - -extern uint64 ottd_rdtsc(); - -#include -#include - -#if defined(_WIN32) || defined(_WIN64) -# include -#else -# include -#endif - -struct CPerformanceTimer -{ - int64 m_start; - int64 m_acc; - - CPerformanceTimer() : m_start(0), m_acc(0) {} - - FORCEINLINE void Start() - { - m_start = QueryTime(); - } - - FORCEINLINE void Stop() - { - m_acc += QueryTime() - m_start; - } - - FORCEINLINE int Get(int64 coef) - { - return (int)(m_acc * coef / QueryFrequency()); - } - - FORCEINLINE int64 QueryTime() - { - return ottd_rdtsc(); - } - - FORCEINLINE int64 QueryFrequency() - { - return ((int64)2200 * 1000000); - } -}; - -struct CPerfStartReal -{ - CPerformanceTimer *m_pperf; - - FORCEINLINE CPerfStartReal(CPerformanceTimer& perf) : m_pperf(&perf) - { - if (m_pperf != NULL) m_pperf->Start(); - } - - FORCEINLINE ~CPerfStartReal() - { - Stop(); - } - - FORCEINLINE void Stop() - { - if (m_pperf != NULL) { - m_pperf->Stop(); - m_pperf = NULL; - } - } -}; - -struct CPerfStartFake -{ - FORCEINLINE CPerfStartFake(CPerformanceTimer& perf) {} - FORCEINLINE ~CPerfStartFake() {} - FORCEINLINE void Stop() {} -}; - -typedef CPerfStartFake CPerfStart; - +#include "../pf_performance_timer.hpp" +#include "yapf.h" //#undef FORCEINLINE //#define FORCEINLINE inline @@ -119,7 +29,7 @@ typedef CPerfStartFake CPerfStart; #include "../../misc/binaryheap.hpp" #include "../../misc/dbg_helpers.h" #include "nodelist.hpp" -#include "follow_track.hpp" +#include "../follow_track.hpp" #include "yapf_base.hpp" #include "yapf_node.hpp" #include "yapf_common.hpp" diff --git a/src/pbs.cpp b/src/pbs.cpp index 789d822a91..adae29e5b0 100644 --- a/src/pbs.cpp +++ b/src/pbs.cpp @@ -12,7 +12,8 @@ #include "stdafx.h" #include "functions.h" #include "vehicle_func.h" -#include "pathfinder/yapf/follow_track.hpp" +#include "pathfinder/follow_track.hpp" +//#include "depot_map.h" /** * Get the reserved trackbits for any tile, regardless of type. diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp index 27d8f3a01d..51b77cee60 100644 --- a/src/train_cmd.cpp +++ b/src/train_cmd.cpp @@ -14,13 +14,15 @@ #include "articulated_vehicles.h" #include "command_func.h" #include "pathfinder/npf/npf_func.h" +#include "pathfinder/yapf/yapf.hpp" +#include "pathfinder/follow_track.hpp" +#include "openttd.h" #include "news_func.h" #include "company_func.h" #include "vehicle_gui.h" #include "newgrf_engine.h" #include "newgrf_sound.h" #include "newgrf_text.h" -#include "pathfinder/yapf/follow_track.hpp" #include "group.h" #include "table/sprites.h" #include "strings_func.h"