summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--projects/openttd_vs80.vcproj16
-rw-r--r--projects/openttd_vs90.vcproj16
-rw-r--r--source.list4
-rw-r--r--src/pathfinder/follow_track.hpp (renamed from src/pathfinder/yapf/follow_track.hpp)12
-rw-r--r--src/pathfinder/pf_performance_timer.hpp82
-rw-r--r--src/pathfinder/yapf/yapf.hpp96
-rw-r--r--src/pbs.cpp3
-rw-r--r--src/train_cmd.cpp4
8 files changed, 116 insertions, 117 deletions
diff --git a/projects/openttd_vs80.vcproj b/projects/openttd_vs80.vcproj
index ddc02a6ab..98e8d7898 100644
--- a/projects/openttd_vs80.vcproj
+++ b/projects/openttd_vs80.vcproj
@@ -3452,6 +3452,10 @@
Name="Pathfinder"
>
<File
+ RelativePath=".\..\src\pathfinder\follow_track.hpp"
+ >
+ </File>
+ <File
RelativePath=".\..\src\pathfinder\opf\opf_ship.cpp"
>
</File>
@@ -3467,6 +3471,10 @@
RelativePath=".\..\src\pathfinder\pathfinder_type.h"
>
</File>
+ <File
+ RelativePath=".\..\src\pathfinder\pf_performance_timer.hpp"
+ >
+ </File>
</Filter>
<Filter
Name="NPF"
@@ -3492,10 +3500,6 @@
>
</File>
<File
- RelativePath=".\..\src\pathfinder\npf\npf.h"
- >
- </File>
- <File
RelativePath=".\..\src\pathfinder\npf\npf_func.h"
>
</File>
@@ -3504,10 +3508,6 @@
Name="YAPF"
>
<File
- RelativePath=".\..\src\pathfinder\yapf\follow_track.hpp"
- >
- </File>
- <File
RelativePath=".\..\src\pathfinder\yapf\nodelist.hpp"
>
</File>
diff --git a/projects/openttd_vs90.vcproj b/projects/openttd_vs90.vcproj
index f2501b02b..ad626ece3 100644
--- a/projects/openttd_vs90.vcproj
+++ b/projects/openttd_vs90.vcproj
@@ -3449,6 +3449,10 @@
Name="Pathfinder"
>
<File
+ RelativePath=".\..\src\pathfinder\follow_track.hpp"
+ >
+ </File>
+ <File
RelativePath=".\..\src\pathfinder\opf\opf_ship.cpp"
>
</File>
@@ -3464,6 +3468,10 @@
RelativePath=".\..\src\pathfinder\pathfinder_type.h"
>
</File>
+ <File
+ RelativePath=".\..\src\pathfinder\pf_performance_timer.hpp"
+ >
+ </File>
</Filter>
<Filter
Name="NPF"
@@ -3489,10 +3497,6 @@
>
</File>
<File
- RelativePath=".\..\src\pathfinder\npf\npf.h"
- >
- </File>
- <File
RelativePath=".\..\src\pathfinder\npf\npf_func.h"
>
</File>
@@ -3501,10 +3505,6 @@
Name="YAPF"
>
<File
- RelativePath=".\..\src\pathfinder\yapf\follow_track.hpp"
- >
- </File>
- <File
RelativePath=".\..\src\pathfinder\yapf\nodelist.hpp"
>
</File>
diff --git a/source.list b/source.list
index 0e13423f8..0bc11a7e3 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
index d1ad1c199..62e36e1bc 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 000000000..a7b3fda5e
--- /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 <http://www.gnu.org/licenses/>.
+ */
+
+/** @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 a8e887a13..ed49f1b1a 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 <limits.h>
-#include <new>
-
-#if defined(_WIN32) || defined(_WIN64)
-# include <windows.h>
-#else
-# include <time.h>
-#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 789d822a9..adae29e5b 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 27d8f3a01..51b77cee6 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"