diff --git a/.gitignore b/.gitignore deleted file mode 100644 index ee3a5ac..0000000 --- a/.gitignore +++ /dev/null @@ -1,26 +0,0 @@ -#Editor generated files -*.sln -*.vcproj -*.suo -*.ncb -*.user - -#Directories -Release/ -Debug/ -Out/ -release/ -debug/ -out/ -bin/ -common/ - -#Project generated files -*.db -*.o -*.a -*.exe - -#Shell files -*.bat -*.sh diff --git a/README.md b/README.md deleted file mode 100644 index 9bc9e84..0000000 --- a/README.md +++ /dev/null @@ -1,11 +0,0 @@ -## Copyright - -Copyright (c) 2013-2015 Kayne Ruse - -This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/debugging/makefile b/common/debugging/makefile similarity index 100% rename from debugging/makefile rename to common/debugging/makefile diff --git a/debugging/timer.cpp b/common/debugging/timer.cpp similarity index 100% rename from debugging/timer.cpp rename to common/debugging/timer.cpp diff --git a/debugging/timer.hpp b/common/debugging/timer.hpp similarity index 100% rename from debugging/timer.hpp rename to common/debugging/timer.hpp diff --git a/frameworks/network/makefile b/common/frameworks/network/makefile similarity index 100% rename from frameworks/network/makefile rename to common/frameworks/network/makefile diff --git a/frameworks/scenes/application.cpp b/common/frameworks/scenes/application.cpp similarity index 100% rename from frameworks/scenes/application.cpp rename to common/frameworks/scenes/application.cpp diff --git a/frameworks/scenes/application.hpp b/common/frameworks/scenes/application.hpp similarity index 100% rename from frameworks/scenes/application.hpp rename to common/frameworks/scenes/application.hpp diff --git a/frameworks/scenes/base_scene.cpp b/common/frameworks/scenes/base_scene.cpp similarity index 100% rename from frameworks/scenes/base_scene.cpp rename to common/frameworks/scenes/base_scene.cpp diff --git a/frameworks/scenes/base_scene.hpp b/common/frameworks/scenes/base_scene.hpp similarity index 100% rename from frameworks/scenes/base_scene.hpp rename to common/frameworks/scenes/base_scene.hpp diff --git a/frameworks/scenes/example_scene.cpp b/common/frameworks/scenes/example_scene.cpp similarity index 100% rename from frameworks/scenes/example_scene.cpp rename to common/frameworks/scenes/example_scene.cpp diff --git a/frameworks/scenes/example_scene.hpp b/common/frameworks/scenes/example_scene.hpp similarity index 100% rename from frameworks/scenes/example_scene.hpp rename to common/frameworks/scenes/example_scene.hpp diff --git a/frameworks/scenes/main.cpp b/common/frameworks/scenes/main.cpp similarity index 100% rename from frameworks/scenes/main.cpp rename to common/frameworks/scenes/main.cpp diff --git a/frameworks/scenes/makefile b/common/frameworks/scenes/makefile similarity index 100% rename from frameworks/scenes/makefile rename to common/frameworks/scenes/makefile diff --git a/frameworks/scenes/scene_signal.hpp b/common/frameworks/scenes/scene_signal.hpp similarity index 100% rename from frameworks/scenes/scene_signal.hpp rename to common/frameworks/scenes/scene_signal.hpp diff --git a/gameplay/character_defines.hpp b/common/gameplay/character_defines.hpp similarity index 100% rename from gameplay/character_defines.hpp rename to common/gameplay/character_defines.hpp diff --git a/gameplay/makefile b/common/gameplay/makefile similarity index 100% rename from gameplay/makefile rename to common/gameplay/makefile diff --git a/graphics/button.cpp b/common/graphics/button.cpp similarity index 100% rename from graphics/button.cpp rename to common/graphics/button.cpp diff --git a/graphics/button.hpp b/common/graphics/button.hpp similarity index 100% rename from graphics/button.hpp rename to common/graphics/button.hpp diff --git a/graphics/image.cpp b/common/graphics/image.cpp similarity index 100% rename from graphics/image.cpp rename to common/graphics/image.cpp diff --git a/graphics/image.hpp b/common/graphics/image.hpp similarity index 100% rename from graphics/image.hpp rename to common/graphics/image.hpp diff --git a/graphics/makefile b/common/graphics/makefile similarity index 100% rename from graphics/makefile rename to common/graphics/makefile diff --git a/graphics/sprite_sheet.cpp b/common/graphics/sprite_sheet.cpp similarity index 100% rename from graphics/sprite_sheet.cpp rename to common/graphics/sprite_sheet.cpp diff --git a/graphics/sprite_sheet.hpp b/common/graphics/sprite_sheet.hpp similarity index 100% rename from graphics/sprite_sheet.hpp rename to common/graphics/sprite_sheet.hpp diff --git a/graphics/text_box.cpp b/common/graphics/text_box.cpp similarity index 100% rename from graphics/text_box.cpp rename to common/graphics/text_box.cpp diff --git a/graphics/text_box.hpp b/common/graphics/text_box.hpp similarity index 100% rename from graphics/text_box.hpp rename to common/graphics/text_box.hpp diff --git a/graphics/text_line.cpp b/common/graphics/text_line.cpp similarity index 100% rename from graphics/text_line.cpp rename to common/graphics/text_line.cpp diff --git a/graphics/text_line.hpp b/common/graphics/text_line.hpp similarity index 100% rename from graphics/text_line.hpp rename to common/graphics/text_line.hpp diff --git a/map/makefile b/common/map/makefile similarity index 100% rename from map/makefile rename to common/map/makefile diff --git a/map/region.cpp b/common/map/region.cpp similarity index 100% rename from map/region.cpp rename to common/map/region.cpp diff --git a/map/region.hpp b/common/map/region.hpp similarity index 100% rename from map/region.hpp rename to common/map/region.hpp diff --git a/map/region_api.cpp b/common/map/region_api.cpp similarity index 100% rename from map/region_api.cpp rename to common/map/region_api.cpp diff --git a/map/region_api.hpp b/common/map/region_api.hpp similarity index 100% rename from map/region_api.hpp rename to common/map/region_api.hpp diff --git a/map/region_pager_api.cpp b/common/map/region_pager_api.cpp similarity index 100% rename from map/region_pager_api.cpp rename to common/map/region_pager_api.cpp diff --git a/map/region_pager_api.hpp b/common/map/region_pager_api.hpp similarity index 100% rename from map/region_pager_api.hpp rename to common/map/region_pager_api.hpp diff --git a/map/region_pager_base.cpp b/common/map/region_pager_base.cpp similarity index 100% rename from map/region_pager_base.cpp rename to common/map/region_pager_base.cpp diff --git a/map/region_pager_base.hpp b/common/map/region_pager_base.hpp similarity index 100% rename from map/region_pager_base.hpp rename to common/map/region_pager_base.hpp diff --git a/map/region_pager_lua.cpp b/common/map/region_pager_lua.cpp similarity index 100% rename from map/region_pager_lua.cpp rename to common/map/region_pager_lua.cpp diff --git a/map/region_pager_lua.hpp b/common/map/region_pager_lua.hpp similarity index 100% rename from map/region_pager_lua.hpp rename to common/map/region_pager_lua.hpp diff --git a/map/tile_sheet.cpp b/common/map/tile_sheet.cpp similarity index 100% rename from map/tile_sheet.cpp rename to common/map/tile_sheet.cpp diff --git a/map/tile_sheet.hpp b/common/map/tile_sheet.hpp similarity index 100% rename from map/tile_sheet.hpp rename to common/map/tile_sheet.hpp diff --git a/network/makefile b/common/network/makefile similarity index 100% rename from network/makefile rename to common/network/makefile diff --git a/network/packet_types/character_packet.cpp b/common/network/packet_types/character_packet.cpp similarity index 100% rename from network/packet_types/character_packet.cpp rename to common/network/packet_types/character_packet.cpp diff --git a/network/packet_types/character_packet.hpp b/common/network/packet_types/character_packet.hpp similarity index 100% rename from network/packet_types/character_packet.hpp rename to common/network/packet_types/character_packet.hpp diff --git a/network/packet_types/client_packet.cpp b/common/network/packet_types/client_packet.cpp similarity index 100% rename from network/packet_types/client_packet.cpp rename to common/network/packet_types/client_packet.cpp diff --git a/network/packet_types/client_packet.hpp b/common/network/packet_types/client_packet.hpp similarity index 100% rename from network/packet_types/client_packet.hpp rename to common/network/packet_types/client_packet.hpp diff --git a/network/packet_types/makefile b/common/network/packet_types/makefile similarity index 100% rename from network/packet_types/makefile rename to common/network/packet_types/makefile diff --git a/network/packet_types/monster_packet.cpp b/common/network/packet_types/monster_packet.cpp similarity index 100% rename from network/packet_types/monster_packet.cpp rename to common/network/packet_types/monster_packet.cpp diff --git a/network/packet_types/monster_packet.hpp b/common/network/packet_types/monster_packet.hpp similarity index 100% rename from network/packet_types/monster_packet.hpp rename to common/network/packet_types/monster_packet.hpp diff --git a/network/packet_types/region_packet.cpp b/common/network/packet_types/region_packet.cpp similarity index 100% rename from network/packet_types/region_packet.cpp rename to common/network/packet_types/region_packet.cpp diff --git a/network/packet_types/region_packet.hpp b/common/network/packet_types/region_packet.hpp similarity index 100% rename from network/packet_types/region_packet.hpp rename to common/network/packet_types/region_packet.hpp diff --git a/network/packet_types/serial_packet_base.cpp b/common/network/packet_types/serial_packet_base.cpp similarity index 100% rename from network/packet_types/serial_packet_base.cpp rename to common/network/packet_types/serial_packet_base.cpp diff --git a/network/packet_types/serial_packet_base.hpp b/common/network/packet_types/serial_packet_base.hpp similarity index 100% rename from network/packet_types/serial_packet_base.hpp rename to common/network/packet_types/serial_packet_base.hpp diff --git a/network/packet_types/server_packet.cpp b/common/network/packet_types/server_packet.cpp similarity index 100% rename from network/packet_types/server_packet.cpp rename to common/network/packet_types/server_packet.cpp diff --git a/network/packet_types/server_packet.hpp b/common/network/packet_types/server_packet.hpp similarity index 100% rename from network/packet_types/server_packet.hpp rename to common/network/packet_types/server_packet.hpp diff --git a/network/packet_types/text_packet.cpp b/common/network/packet_types/text_packet.cpp similarity index 100% rename from network/packet_types/text_packet.cpp rename to common/network/packet_types/text_packet.cpp diff --git a/network/packet_types/text_packet.hpp b/common/network/packet_types/text_packet.hpp similarity index 100% rename from network/packet_types/text_packet.hpp rename to common/network/packet_types/text_packet.hpp diff --git a/network/serial_packet.hpp b/common/network/serial_packet.hpp similarity index 100% rename from network/serial_packet.hpp rename to common/network/serial_packet.hpp diff --git a/network/serial_packet_type.hpp b/common/network/serial_packet_type.hpp similarity index 100% rename from network/serial_packet_type.hpp rename to common/network/serial_packet_type.hpp diff --git a/network/serial_utility.cpp b/common/network/serial_utility.cpp similarity index 100% rename from network/serial_utility.cpp rename to common/network/serial_utility.cpp diff --git a/network/serial_utility.hpp b/common/network/serial_utility.hpp similarity index 100% rename from network/serial_utility.hpp rename to common/network/serial_utility.hpp diff --git a/network/udp_network_utility.cpp b/common/network/udp_network_utility.cpp similarity index 100% rename from network/udp_network_utility.cpp rename to common/network/udp_network_utility.cpp diff --git a/network/udp_network_utility.hpp b/common/network/udp_network_utility.hpp similarity index 100% rename from network/udp_network_utility.hpp rename to common/network/udp_network_utility.hpp diff --git a/utilities/bounding_box.hpp b/common/utilities/bounding_box.hpp similarity index 100% rename from utilities/bounding_box.hpp rename to common/utilities/bounding_box.hpp diff --git a/utilities/config_utility.cpp b/common/utilities/config_utility.cpp similarity index 100% rename from utilities/config_utility.cpp rename to common/utilities/config_utility.cpp diff --git a/utilities/config_utility.hpp b/common/utilities/config_utility.hpp similarity index 100% rename from utilities/config_utility.hpp rename to common/utilities/config_utility.hpp diff --git a/utilities/frame_rate.hpp b/common/utilities/frame_rate.hpp similarity index 100% rename from utilities/frame_rate.hpp rename to common/utilities/frame_rate.hpp diff --git a/utilities/ip_operators.cpp b/common/utilities/ip_operators.cpp similarity index 100% rename from utilities/ip_operators.cpp rename to common/utilities/ip_operators.cpp diff --git a/utilities/ip_operators.hpp b/common/utilities/ip_operators.hpp similarity index 100% rename from utilities/ip_operators.hpp rename to common/utilities/ip_operators.hpp diff --git a/utilities/makefile b/common/utilities/makefile similarity index 100% rename from utilities/makefile rename to common/utilities/makefile diff --git a/utilities/singleton.hpp b/common/utilities/singleton.hpp similarity index 100% rename from utilities/singleton.hpp rename to common/utilities/singleton.hpp diff --git a/utilities/vector2.hpp b/common/utilities/vector2.hpp similarity index 100% rename from utilities/vector2.hpp rename to common/utilities/vector2.hpp