changeset 15752:e8add3288198 draft

(svn r20419) -Codechange: Rename dummy_land.cpp to void_cmd.cpp
author frosch <frosch@openttd.org>
date Mon, 09 Aug 2010 06:48:52 +0000
parents a6dee2dc918f
children 052ed430fe94
files projects/openttd_vs100.vcxproj projects/openttd_vs100.vcxproj.filters projects/openttd_vs80.vcproj projects/openttd_vs90.vcproj source.list src/dummy_land.cpp src/landscape.cpp src/void_cmd.cpp
diffstat 8 files changed, 98 insertions(+), 98 deletions(-) [+]
line wrap: on
line diff
--- a/projects/openttd_vs100.vcxproj
+++ b/projects/openttd_vs100.vcxproj
@@ -685,7 +685,6 @@
     <ClCompile Include="..\src\company_cmd.cpp" />
     <ClCompile Include="..\src\depot_cmd.cpp" />
     <ClCompile Include="..\src\disaster_cmd.cpp" />
-    <ClCompile Include="..\src\dummy_land.cpp" />
     <ClCompile Include="..\src\group_cmd.cpp" />
     <ClCompile Include="..\src\industry_cmd.cpp" />
     <ClCompile Include="..\src\misc_cmd.cpp" />
@@ -704,6 +703,7 @@
     <ClCompile Include="..\src\tree_cmd.cpp" />
     <ClCompile Include="..\src\tunnelbridge_cmd.cpp" />
     <ClCompile Include="..\src\vehicle_cmd.cpp" />
+    <ClCompile Include="..\src\void_cmd.cpp" />
     <ClCompile Include="..\src\water_cmd.cpp" />
     <ClCompile Include="..\src\waypoint_cmd.cpp" />
     <ClCompile Include="..\src\saveload\afterload.cpp" />
--- a/projects/openttd_vs100.vcxproj.filters
+++ b/projects/openttd_vs100.vcxproj.filters
@@ -1258,9 +1258,6 @@
     <ClCompile Include="..\src\disaster_cmd.cpp">
       <Filter>Command handlers</Filter>
     </ClCompile>
-    <ClCompile Include="..\src\dummy_land.cpp">
-      <Filter>Command handlers</Filter>
-    </ClCompile>
     <ClCompile Include="..\src\group_cmd.cpp">
       <Filter>Command handlers</Filter>
     </ClCompile>
@@ -1315,6 +1312,9 @@
     <ClCompile Include="..\src\vehicle_cmd.cpp">
       <Filter>Command handlers</Filter>
     </ClCompile>
+    <ClCompile Include="..\src\void_cmd.cpp">
+      <Filter>Command handlers</Filter>
+    </ClCompile>
     <ClCompile Include="..\src\water_cmd.cpp">
       <Filter>Command handlers</Filter>
     </ClCompile>
--- a/projects/openttd_vs80.vcproj
+++ b/projects/openttd_vs80.vcproj
@@ -2024,10 +2024,6 @@
 				>
 			</File>
 			<File
-				RelativePath=".\..\src\dummy_land.cpp"
-				>
-			</File>
-			<File
 				RelativePath=".\..\src\group_cmd.cpp"
 				>
 			</File>
@@ -2100,6 +2096,10 @@
 				>
 			</File>
 			<File
+				RelativePath=".\..\src\void_cmd.cpp"
+				>
+			</File>
+			<File
 				RelativePath=".\..\src\water_cmd.cpp"
 				>
 			</File>
--- a/projects/openttd_vs90.vcproj
+++ b/projects/openttd_vs90.vcproj
@@ -2021,10 +2021,6 @@
 				>
 			</File>
 			<File
-				RelativePath=".\..\src\dummy_land.cpp"
-				>
-			</File>
-			<File
 				RelativePath=".\..\src\group_cmd.cpp"
 				>
 			</File>
@@ -2097,6 +2093,10 @@
 				>
 			</File>
 			<File
+				RelativePath=".\..\src\void_cmd.cpp"
+				>
+			</File>
+			<File
 				RelativePath=".\..\src\water_cmd.cpp"
 				>
 			</File>
--- a/source.list
+++ b/source.list
@@ -434,7 +434,6 @@
 company_cmd.cpp
 depot_cmd.cpp
 disaster_cmd.cpp
-dummy_land.cpp
 group_cmd.cpp
 industry_cmd.cpp
 misc_cmd.cpp
@@ -453,6 +452,7 @@
 tree_cmd.cpp
 tunnelbridge_cmd.cpp
 vehicle_cmd.cpp
+void_cmd.cpp
 water_cmd.cpp
 waypoint_cmd.cpp
 
deleted file mode 100644
--- a/src/dummy_land.cpp
+++ /dev/null
@@ -1,83 +0,0 @@
-/* $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 dummy_land.cpp Handling of void (or dummy) tiles. */
-
-#include "stdafx.h"
-#include "tile_cmd.h"
-#include "command_func.h"
-#include "viewport_func.h"
-
-#include "table/strings.h"
-#include "table/sprites.h"
-
-static void DrawTile_Dummy(TileInfo *ti)
-{
-	DrawGroundSprite(SPR_SHADOW_CELL, PAL_NONE);
-}
-
-
-static uint GetSlopeZ_Dummy(TileIndex tile, uint x, uint y)
-{
-	return TilePixelHeight(tile);
-}
-
-static Foundation GetFoundation_Dummy(TileIndex tile, Slope tileh)
-{
-	return FOUNDATION_NONE;
-}
-
-static CommandCost ClearTile_Dummy(TileIndex tile, DoCommandFlag flags)
-{
-	return_cmd_error(STR_ERROR_OFF_EDGE_OF_MAP);
-}
-
-
-static void GetTileDesc_Dummy(TileIndex tile, TileDesc *td)
-{
-	td->str = STR_EMPTY;
-	td->owner[0] = OWNER_NONE;
-}
-
-static void TileLoop_Dummy(TileIndex tile)
-{
-	/* not used */
-}
-
-static void ChangeTileOwner_Dummy(TileIndex tile, Owner old_owner, Owner new_owner)
-{
-	/* not used */
-}
-
-static TrackStatus GetTileTrackStatus_Dummy(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side)
-{
-	return 0;
-}
-
-static CommandCost TerraformTile_Dummy(TileIndex tile, DoCommandFlag flags, uint z_new, Slope tileh_new)
-{
-	return_cmd_error(STR_ERROR_OFF_EDGE_OF_MAP);
-}
-
-extern const TileTypeProcs _tile_type_dummy_procs = {
-	DrawTile_Dummy,           // draw_tile_proc
-	GetSlopeZ_Dummy,          // get_slope_z_proc
-	ClearTile_Dummy,          // clear_tile_proc
-	NULL,                     // add_accepted_cargo_proc
-	GetTileDesc_Dummy,        // get_tile_desc_proc
-	GetTileTrackStatus_Dummy, // get_tile_track_status_proc
-	NULL,                     // click_tile_proc
-	NULL,                     // animate_tile_proc
-	TileLoop_Dummy,           // tile_loop_clear
-	ChangeTileOwner_Dummy,    // change_tile_owner_clear
-	NULL,                     // add_produced_cargo_proc
-	NULL,                     // vehicle_enter_tile_proc
-	GetFoundation_Dummy,      // get_foundation_proc
-	TerraformTile_Dummy,      // terraform_tile_proc
-};
--- a/src/landscape.cpp
+++ b/src/landscape.cpp
@@ -40,7 +40,7 @@
 	_tile_type_trees_procs,
 	_tile_type_station_procs,
 	_tile_type_water_procs,
-	_tile_type_dummy_procs,
+	_tile_type_void_procs,
 	_tile_type_industry_procs,
 	_tile_type_tunnelbridge_procs,
 	_tile_type_object_procs;
@@ -58,7 +58,7 @@
 	&_tile_type_trees_procs,        ///< Callback functions for MP_TREES tiles
 	&_tile_type_station_procs,      ///< Callback functions for MP_STATION tiles
 	&_tile_type_water_procs,        ///< Callback functions for MP_WATER tiles
-	&_tile_type_dummy_procs,        ///< Callback functions for MP_VOID tiles
+	&_tile_type_void_procs,         ///< Callback functions for MP_VOID tiles
 	&_tile_type_industry_procs,     ///< Callback functions for MP_INDUSTRY tiles
 	&_tile_type_tunnelbridge_procs, ///< Callback functions for MP_TUNNELBRIDGE tiles
 	&_tile_type_object_procs,       ///< Callback functions for MP_OBJECT tiles
new file mode 100644
--- /dev/null
+++ b/src/void_cmd.cpp
@@ -0,0 +1,83 @@
+/* $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 void_cmd.cpp Handling of void tiles. */
+
+#include "stdafx.h"
+#include "tile_cmd.h"
+#include "command_func.h"
+#include "viewport_func.h"
+
+#include "table/strings.h"
+#include "table/sprites.h"
+
+static void DrawTile_Void(TileInfo *ti)
+{
+	DrawGroundSprite(SPR_SHADOW_CELL, PAL_NONE);
+}
+
+
+static uint GetSlopeZ_Void(TileIndex tile, uint x, uint y)
+{
+	return TilePixelHeight(tile);
+}
+
+static Foundation GetFoundation_Void(TileIndex tile, Slope tileh)
+{
+	return FOUNDATION_NONE;
+}
+
+static CommandCost ClearTile_Void(TileIndex tile, DoCommandFlag flags)
+{
+	return_cmd_error(STR_ERROR_OFF_EDGE_OF_MAP);
+}
+
+
+static void GetTileDesc_Void(TileIndex tile, TileDesc *td)
+{
+	td->str = STR_EMPTY;
+	td->owner[0] = OWNER_NONE;
+}
+
+static void TileLoop_Void(TileIndex tile)
+{
+	/* not used */
+}
+
+static void ChangeTileOwner_Void(TileIndex tile, Owner old_owner, Owner new_owner)
+{
+	/* not used */
+}
+
+static TrackStatus GetTileTrackStatus_Void(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side)
+{
+	return 0;
+}
+
+static CommandCost TerraformTile_Void(TileIndex tile, DoCommandFlag flags, uint z_new, Slope tileh_new)
+{
+	return_cmd_error(STR_ERROR_OFF_EDGE_OF_MAP);
+}
+
+extern const TileTypeProcs _tile_type_void_procs = {
+	DrawTile_Void,            // draw_tile_proc
+	GetSlopeZ_Void,           // get_slope_z_proc
+	ClearTile_Void,           // clear_tile_proc
+	NULL,                     // add_accepted_cargo_proc
+	GetTileDesc_Void,         // get_tile_desc_proc
+	GetTileTrackStatus_Void,  // get_tile_track_status_proc
+	NULL,                     // click_tile_proc
+	NULL,                     // animate_tile_proc
+	TileLoop_Void,            // tile_loop_clear
+	ChangeTileOwner_Void,     // change_tile_owner_clear
+	NULL,                     // add_produced_cargo_proc
+	NULL,                     // vehicle_enter_tile_proc
+	GetFoundation_Void,       // get_foundation_proc
+	TerraformTile_Void,       // terraform_tile_proc
+};