Skip to content

Commit

Permalink
rename gamestatus.?pp -> game_data.?pp, b/c of content changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeck88 committed Jun 24, 2014
1 parent cf2651b commit b51d6a1
Show file tree
Hide file tree
Showing 28 changed files with 35 additions and 35 deletions.
4 changes: 2 additions & 2 deletions projectfiles/CodeBlocks/wesnoth.cbp
Expand Up @@ -339,6 +339,8 @@
<Unit filename="..\..\src\game_config_manager.hpp" />
<Unit filename="..\..\src\game_controller.cpp" />
<Unit filename="..\..\src\game_controller.hpp" />
<Unit filename="..\..\src\game_data.cpp" />
<Unit filename="..\..\src\game_data.hpp" />
<Unit filename="..\..\src\game_display.cpp" />
<Unit filename="..\..\src\game_display.hpp" />
<Unit filename="..\..\src\game_end_exceptions.cpp" />
Expand All @@ -362,8 +364,6 @@
<Unit filename="..\..\src\game_preferences.cpp" />
<Unit filename="..\..\src\game_preferences.hpp" />
<Unit filename="..\..\src\game_preferences_display.cpp" />
<Unit filename="..\..\src\gamestatus.cpp" />
<Unit filename="..\..\src\gamestatus.hpp" />
<Unit filename="..\..\src\generators\cavegen.cpp" />
<Unit filename="..\..\src\generators\cavegen.hpp" />
<Unit filename="..\..\src\generators\map_create.cpp" />
Expand Down
16 changes: 8 additions & 8 deletions projectfiles/VC9/wesnoth.vcproj
Expand Up @@ -20296,6 +20296,14 @@
RelativePath="..\..\src\game_controller.hpp"
>
</File>
<File
RelativePath="..\..\src\game_data.cpp"
>
</File>
<File
RelativePath="..\..\src\game_data.hpp"
>
</File>
<File
RelativePath="..\..\src\game_display.cpp"
>
Expand Down Expand Up @@ -20332,14 +20340,6 @@
RelativePath="..\..\src\game_preferences_display.cpp"
>
</File>
<File
RelativePath="..\..\src\gamestatus.cpp"
>
</File>
<File
RelativePath="..\..\src\gamestatus.hpp"
>
</File>
<File
RelativePath="..\..\src\generic_event.cpp"
>
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Expand Up @@ -743,6 +743,7 @@ set(wesnoth-main_SRC
game_classification.cpp
game_config_manager.cpp
game_controller.cpp
game_data.cpp
game_display.cpp
game_errors.cpp
game_events/action_wml.cpp
Expand All @@ -754,7 +755,6 @@ set(wesnoth-main_SRC
game_events/wmi_container.cpp
game_preferences.cpp
game_preferences_display.cpp
gamestatus.cpp
generic_event.cpp
gui/auxiliary/canvas.cpp
gui/auxiliary/log.cpp
Expand Down
2 changes: 1 addition & 1 deletion src/SConscript
Expand Up @@ -276,6 +276,7 @@ wesnoth_sources = Split("""
game_classification.cpp
game_config_manager.cpp
game_controller.cpp
game_data.cpp
game_display.cpp
game_errors.cpp
game_events/action_wml.cpp
Expand All @@ -286,7 +287,6 @@ wesnoth_sources = Split("""
game_events/pump.cpp
game_events/wmi_container.cpp
game_preferences.cpp
gamestatus.cpp
gui/auxiliary/canvas.cpp
gui/auxiliary/event/dispatcher.cpp
gui/auxiliary/event/distributor.cpp
Expand Down
2 changes: 1 addition & 1 deletion src/actions/attack.cpp
Expand Up @@ -29,7 +29,7 @@
#include "../game_display.hpp"
#include "../game_events/pump.hpp"
#include "../game_preferences.hpp"
#include "../gamestatus.hpp"
#include "../game_data.hpp"
#include "../gettext.hpp"
#include "../log.hpp"
#include "../map.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/actions/create.cpp
Expand Up @@ -29,7 +29,7 @@
#include "../game_display.hpp"
#include "../game_events/pump.hpp"
#include "../game_preferences.hpp"
#include "../gamestatus.hpp"
#include "../game_data.hpp"
#include "../gettext.hpp"
#include "../log.hpp"
#include "../map.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/ai/testing/ca.cpp
Expand Up @@ -25,7 +25,7 @@
#include "../composite/stage.hpp"
#include "../../game_board.hpp"
#include "../../game_classification.hpp"
#include "../../gamestatus.hpp"
#include "../../game_data.hpp"
#include "../../log.hpp"
#include "../../map.hpp"
#include "../../resources.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/carryover.cpp
Expand Up @@ -19,7 +19,7 @@
#include "config.hpp"
#include "team.hpp"
#include "unit.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include <boost/foreach.hpp>
#include <cassert>

Expand Down
2 changes: 1 addition & 1 deletion src/gamestatus.cpp → src/game_data.cpp
Expand Up @@ -19,7 +19,7 @@

#include "global.hpp"

#include "gamestatus.hpp"
#include "game_data.hpp"

#include "carryover.hpp"
#include "filesystem.hpp"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/game_events/conditional_wml.cpp
Expand Up @@ -21,7 +21,7 @@
#include "conditional_wml.hpp"

#include "../config.hpp"
#include "../gamestatus.hpp"
#include "../game_data.hpp"
#include "../log.hpp"
#include "../recall_list_manager.hpp"
#include "../resources.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/game_events/handlers.cpp
Expand Up @@ -24,7 +24,7 @@
#include "pump.hpp"

#include "../formula_string_utils.hpp"
#include "../gamestatus.hpp"
#include "../game_data.hpp"
#include "../hotkey/hotkey_command.hpp"
#include "../log.hpp"
#include "../reports.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/game_events/menu_item.cpp
Expand Up @@ -25,7 +25,7 @@

#include "../actions/undo.hpp"
#include "../game_config.hpp"
#include "../gamestatus.hpp"
#include "../game_data.hpp"
#include "../log.hpp"
#include "../mouse_handler_base.hpp"
#include "../play_controller.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/game_events/pump.cpp
Expand Up @@ -25,7 +25,7 @@

#include "../game_config.hpp"
#include "../game_display.hpp"
#include "../gamestatus.hpp"
#include "../game_data.hpp"
#include "../gettext.hpp"
#include "../log.hpp"
#include "../play_controller.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/game_events/wmi_container.cpp
Expand Up @@ -23,7 +23,7 @@
#include "menu_item.hpp"

#include "../config.hpp"
#include "../gamestatus.hpp"
#include "../game_data.hpp"
#include "../log.hpp"
#include "../map_location.hpp"
#include "../resources.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/gui/dialogs/gamestate_inspector.cpp
Expand Up @@ -31,7 +31,7 @@
#include "serialization/parser.hpp" // for write()
#include "utils/foreach.tpp"

#include "../../gamestatus.hpp"
#include "../../game_data.hpp"
#include "../../recall_list_manager.hpp"
#include "../../resources.hpp"
#include "../../team.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/map_label.cpp
Expand Up @@ -15,7 +15,7 @@
#include "global.hpp"

#include "display.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include "map_label.hpp"
#include "resources.hpp"
#include "formula_string_utils.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/persist_var.cpp
Expand Up @@ -14,7 +14,7 @@

#include "global.hpp"

#include "gamestatus.hpp"
#include "game_data.hpp"
#include "log.hpp"
#include "network.hpp"
#include "persist_context.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/play_controller.hpp
Expand Up @@ -19,7 +19,7 @@
#include "controller_base.hpp"
#include "game_end_exceptions.hpp"
#include "game_board.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include "help.hpp"
#include "menu_events.hpp"
#include "mouse_events.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/replay.cpp
Expand Up @@ -27,7 +27,7 @@
#include "dialogs.hpp"
#include "game_display.hpp"
#include "game_preferences.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include "log.hpp"
#include "map_label.hpp"
#include "map_location.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/scripting/lua.cpp
Expand Up @@ -46,7 +46,7 @@
#include "game_events/conditional_wml.hpp"
#include "game_events/pump.hpp"
#include "game_preferences.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include "game_config_manager.hpp"
#include "log.hpp"
#include "lua_jailbreak_exception.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/storyscreen/controller.cpp
Expand Up @@ -29,7 +29,7 @@
#include "display.hpp"
#include "game_events/action_wml.hpp"
#include "game_events/conditional_wml.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include "gettext.hpp"
#include "intro.hpp"
#include "log.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/storyscreen/part.cpp
Expand Up @@ -24,7 +24,7 @@
#include "storyscreen/part.hpp"

#include "config.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include "game_events/action_wml.hpp"
#include "game_events/conditional_wml.hpp"
#include "image.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/synced_commands.cpp
Expand Up @@ -16,7 +16,7 @@
#include "log.hpp"
#include "resources.hpp"
#include "map_location.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include "unit.hpp"
#include "team.hpp"
#include "play_controller.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/synced_context.cpp
Expand Up @@ -13,7 +13,7 @@
#include "random_new_deterministic.hpp"
#include "resources.hpp"
#include "synced_checkup.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include "network.hpp"
#include "log.hpp"
#include "lua_jailbreak_exception.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/team.cpp
Expand Up @@ -22,7 +22,7 @@
#include "ai/manager.hpp"
#include "formula_string_utils.hpp"
#include "game_events/pump.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include "map.hpp"
#include "resources.hpp"
#include "game_preferences.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/tod_manager.cpp
Expand Up @@ -16,7 +16,7 @@

#include "display_context.hpp"
#include "formula_string_utils.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include "gettext.hpp"
#include "log.hpp"
#include "map.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/variable.cpp
Expand Up @@ -24,7 +24,7 @@
#include "variable.hpp"

#include "formula_string_utils.hpp"
#include "gamestatus.hpp"
#include "game_data.hpp"
#include "log.hpp"
#include "resources.hpp"
#include "unit.hpp"
Expand Down

0 comments on commit b51d6a1

Please sign in to comment.