mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 12:41:30 +00:00
More renames, world should be done
This commit is contained in:
parent
5bf49d2ef9
commit
4821ed79fb
@ -1,64 +1,64 @@
|
||||
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
|
||||
|
||||
SET(world_sources
|
||||
Adventure.cpp
|
||||
AdventureManager.cpp
|
||||
adventure.cpp
|
||||
adventure_manager.cpp
|
||||
client.cpp
|
||||
cliententry.cpp
|
||||
clientlist.cpp
|
||||
CMakeLists.txt
|
||||
console.cpp
|
||||
EQLConfig.cpp
|
||||
EQW.cpp
|
||||
EQWHTTPHandler.cpp
|
||||
EQWParser.cpp
|
||||
HTTPRequest.cpp
|
||||
LauncherLink.cpp
|
||||
LauncherList.cpp
|
||||
eql_config.cpp
|
||||
eqw.cpp
|
||||
eqw_http_handler.cpp
|
||||
eqw_parser.cpp
|
||||
http_request.cpp
|
||||
launcher_link.cpp
|
||||
launcher_list.cpp
|
||||
lfplist.cpp
|
||||
LoginServer.cpp
|
||||
LoginServerList.cpp
|
||||
login_server.cpp
|
||||
login_server_list.cpp
|
||||
net.cpp
|
||||
perl_EQLConfig.cpp
|
||||
perl_EQW.cpp
|
||||
perl_HTTPRequest.cpp
|
||||
perl_eql_config.cpp
|
||||
perl_eqw.cpp
|
||||
perl_http_request.cpp
|
||||
queryserv.cpp
|
||||
ucs.cpp
|
||||
wguild_mgr.cpp
|
||||
world_logsys.cpp
|
||||
WorldConfig.cpp
|
||||
world_config.cpp
|
||||
worlddb.cpp
|
||||
zonelist.cpp
|
||||
zoneserver.cpp
|
||||
)
|
||||
|
||||
SET(world_headers
|
||||
Adventure.h
|
||||
AdventureManager.h
|
||||
AdventureTemplate.h
|
||||
adventure.h
|
||||
adventure_manager.h
|
||||
adventure_template.h
|
||||
client.h
|
||||
cliententry.h
|
||||
clientlist.h
|
||||
CMakeLists.txt
|
||||
console.h
|
||||
EQLConfig.h
|
||||
EQW.h
|
||||
EQWHTTPHandler.h
|
||||
EQWParser.h
|
||||
HTTPRequest.h
|
||||
LauncherLink.h
|
||||
LauncherList.h
|
||||
eql_config.h
|
||||
eqw.h
|
||||
eqw_http_handler.h
|
||||
eqw_parser.h
|
||||
http_request.h
|
||||
launcher_link.h
|
||||
launcher_list.h
|
||||
lfplist.h
|
||||
LoginServer.h
|
||||
LoginServerList.h
|
||||
login_server.h
|
||||
login_server_list.h
|
||||
net.h
|
||||
queryserv.h
|
||||
sofCharCreateData.h
|
||||
sof_char_create_data.h
|
||||
ucs.h
|
||||
wguild_mgr.h
|
||||
WorldConfig.h
|
||||
world_config.h
|
||||
worlddb.h
|
||||
WorldTCPConnection.h
|
||||
world_tcp_connection.h
|
||||
zonelist.h
|
||||
zoneserver.h
|
||||
)
|
||||
|
||||
@ -4,8 +4,8 @@
|
||||
#include "../common/rulesys.h"
|
||||
#include "../common/misc_functions.h"
|
||||
#include "../common/string_util.h"
|
||||
#include "Adventure.h"
|
||||
#include "AdventureManager.h"
|
||||
#include "adventure.h"
|
||||
#include "adventure_manager.h"
|
||||
#include "worlddb.h"
|
||||
#include "zonelist.h"
|
||||
#include "clientlist.h"
|
||||
@ -4,7 +4,7 @@
|
||||
#include "../common/debug.h"
|
||||
#include "../common/types.h"
|
||||
#include "../common/timer.h"
|
||||
#include "AdventureTemplate.h"
|
||||
#include "adventure_template.h"
|
||||
#include <list>
|
||||
#include <string>
|
||||
#include <stdlib.h>
|
||||
@ -3,8 +3,8 @@
|
||||
#include "../common/string_util.h"
|
||||
#include "../common/servertalk.h"
|
||||
#include "../common/rulesys.h"
|
||||
#include "Adventure.h"
|
||||
#include "AdventureManager.h"
|
||||
#include "adventure.h"
|
||||
#include "adventure_manager.h"
|
||||
#include "worlddb.h"
|
||||
#include "zonelist.h"
|
||||
#include "clientlist.h"
|
||||
@ -4,8 +4,8 @@
|
||||
#include "../common/debug.h"
|
||||
#include "../common/types.h"
|
||||
#include "../common/timer.h"
|
||||
#include "Adventure.h"
|
||||
#include "AdventureTemplate.h"
|
||||
#include "adventure.h"
|
||||
#include "adventure_template.h"
|
||||
#include <map>
|
||||
#include <list>
|
||||
|
||||
@ -18,14 +18,14 @@
|
||||
|
||||
#include "client.h"
|
||||
#include "worlddb.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "LoginServer.h"
|
||||
#include "LoginServerList.h"
|
||||
#include "world_config.h"
|
||||
#include "login_server.h"
|
||||
#include "login_server_list.h"
|
||||
#include "zoneserver.h"
|
||||
#include "zonelist.h"
|
||||
#include "clientlist.h"
|
||||
#include "wguild_mgr.h"
|
||||
#include "sofCharCreateData.h"
|
||||
#include "sof_char_create_data.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <iomanip>
|
||||
|
||||
@ -18,11 +18,11 @@
|
||||
#include "../common/debug.h"
|
||||
#include "cliententry.h"
|
||||
#include "clientlist.h"
|
||||
#include "LoginServer.h"
|
||||
#include "LoginServerList.h"
|
||||
#include "login_server.h"
|
||||
#include "login_server_list.h"
|
||||
#include "worlddb.h"
|
||||
#include "zoneserver.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "world_config.h"
|
||||
#include "../common/guilds.h"
|
||||
#include "../common/string_util.h"
|
||||
|
||||
|
||||
@ -31,19 +31,19 @@
|
||||
#include "../common/seperator.h"
|
||||
#include "../common/eq_packet_structs.h"
|
||||
#include "../common/eq_packet.h"
|
||||
#include "LoginServer.h"
|
||||
#include "LoginServerList.h"
|
||||
#include "login_server.h"
|
||||
#include "login_server_list.h"
|
||||
#include "../common/serverinfo.h"
|
||||
#include "../common/md5.h"
|
||||
#include "../common/opcodemgr.h"
|
||||
#include "../common/rulesys.h"
|
||||
#include "../common/ruletypes.h"
|
||||
#include "../common/string_util.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "world_config.h"
|
||||
#include "zoneserver.h"
|
||||
#include "zonelist.h"
|
||||
#include "clientlist.h"
|
||||
#include "LauncherList.h"
|
||||
#include "launcher_list.h"
|
||||
#include "ucs.h"
|
||||
#include "queryserv.h"
|
||||
|
||||
|
||||
@ -39,7 +39,7 @@ enum {
|
||||
#include "../common/timer.h"
|
||||
#include "../common/queue.h"
|
||||
#include "../common/emu_tcp_connection.h"
|
||||
#include "WorldTCPConnection.h"
|
||||
#include "world_tcp_connection.h"
|
||||
#include "../common/mutex.h"
|
||||
|
||||
struct ServerChannelMessage_Struct;
|
||||
|
||||
@ -16,10 +16,10 @@
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
#include "../common/debug.h"
|
||||
#include "EQLConfig.h"
|
||||
#include "eql_config.h"
|
||||
#include "worlddb.h"
|
||||
#include "LauncherLink.h"
|
||||
#include "LauncherList.h"
|
||||
#include "launcher_link.h"
|
||||
#include "launcher_list.h"
|
||||
#include "../common/string_util.h"
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
@ -19,9 +19,9 @@
|
||||
#ifdef EMBPERL
|
||||
|
||||
#include "../common/debug.h"
|
||||
#include "EQW.h"
|
||||
#include "EQWParser.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "eqw.h"
|
||||
#include "eqw_parser.h"
|
||||
#include "world_config.h"
|
||||
#include "../common/races.h"
|
||||
#include "../common/classes.h"
|
||||
#include "../common/misc.h"
|
||||
@ -30,12 +30,12 @@
|
||||
#include "zonelist.h"
|
||||
#include "clientlist.h"
|
||||
#include "cliententry.h"
|
||||
#include "LoginServer.h"
|
||||
#include "LoginServerList.h"
|
||||
#include "login_server.h"
|
||||
#include "login_server_list.h"
|
||||
#include "worlddb.h"
|
||||
#include "client.h"
|
||||
#include "LauncherList.h"
|
||||
#include "LauncherLink.h"
|
||||
#include "launcher_list.h"
|
||||
#include "launcher_link.h"
|
||||
#include "wguild_mgr.h"
|
||||
|
||||
#ifdef seed
|
||||
@ -16,11 +16,11 @@
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
#include "../common/debug.h"
|
||||
#include "EQWHTTPHandler.h"
|
||||
#include "eqw_http_handler.h"
|
||||
#include "../common/SocketLib/Base64.h"
|
||||
#include "EQWParser.h"
|
||||
#include "EQW.h"
|
||||
#include "HTTPRequest.h"
|
||||
#include "eqw_parser.h"
|
||||
#include "eqw.h"
|
||||
#include "http_request.h"
|
||||
#include "../common/logsys.h"
|
||||
#include "worlddb.h"
|
||||
#include "console.h"
|
||||
@ -21,8 +21,8 @@
|
||||
#ifdef EMBPERL
|
||||
|
||||
#include "../common/debug.h"
|
||||
#include "EQWParser.h"
|
||||
#include "EQW.h"
|
||||
#include "eqw_parser.h"
|
||||
#include "eqw.h"
|
||||
#include "../common/eqdb.h"
|
||||
#include "../common/logsys.h"
|
||||
#include "worlddb.h"
|
||||
@ -16,8 +16,8 @@
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
#include "../common/debug.h"
|
||||
#include "HTTPRequest.h"
|
||||
#include "EQWHTTPHandler.h"
|
||||
#include "http_request.h"
|
||||
#include "eqw_http_handler.h"
|
||||
#include "../common/eqdb.h"
|
||||
#include "../common/SocketLib/HttpdForm.h"
|
||||
#include <cstdlib>
|
||||
@ -17,9 +17,9 @@
|
||||
*/
|
||||
|
||||
#include "../common/debug.h"
|
||||
#include "LauncherLink.h"
|
||||
#include "LauncherList.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "launcher_link.h"
|
||||
#include "launcher_list.h"
|
||||
#include "world_config.h"
|
||||
#include "../common/logsys.h"
|
||||
#include "../common/md5.h"
|
||||
#include "../common/packet_dump.h"
|
||||
@ -27,7 +27,7 @@
|
||||
#include "../common/emu_tcp_connection.h"
|
||||
#include "../common/string_util.h"
|
||||
#include "worlddb.h"
|
||||
#include "EQLConfig.h"
|
||||
#include "eql_config.h"
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
@ -18,10 +18,10 @@
|
||||
|
||||
|
||||
#include "../common/debug.h"
|
||||
#include "LauncherList.h"
|
||||
#include "LauncherLink.h"
|
||||
#include "launcher_list.h"
|
||||
#include "launcher_link.h"
|
||||
#include "../common/logsys.h"
|
||||
#include "EQLConfig.h"
|
||||
#include "eql_config.h"
|
||||
|
||||
LauncherList::LauncherList()
|
||||
: nextID(1)
|
||||
@ -52,8 +52,8 @@
|
||||
#define IGNORE_LS_FATAL_ERROR
|
||||
|
||||
#include "../common/servertalk.h"
|
||||
#include "LoginServer.h"
|
||||
#include "LoginServerList.h"
|
||||
#include "login_server.h"
|
||||
#include "login_server_list.h"
|
||||
#include "../common/eq_packet_structs.h"
|
||||
#include "../common/packet_dump.h"
|
||||
#include "../common/string_util.h"
|
||||
@ -61,7 +61,7 @@
|
||||
#include "worlddb.h"
|
||||
#include "zonelist.h"
|
||||
#include "clientlist.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "world_config.h"
|
||||
|
||||
extern ZSList zoneserver_list;
|
||||
extern ClientList client_list;
|
||||
@ -26,15 +26,15 @@
|
||||
#define IGNORE_LS_FATAL_ERROR
|
||||
|
||||
#include "../common/servertalk.h"
|
||||
#include "LoginServer.h"
|
||||
#include "LoginServerList.h"
|
||||
#include "login_server.h"
|
||||
#include "login_server_list.h"
|
||||
#include "../common/eq_packet_structs.h"
|
||||
#include "../common/packet_dump.h"
|
||||
#include "zoneserver.h"
|
||||
#include "worlddb.h"
|
||||
#include "zonelist.h"
|
||||
#include "clientlist.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "world_config.h"
|
||||
|
||||
extern ZSList zoneserver_list;
|
||||
extern LoginServerList loginserverlist;
|
||||
@ -72,17 +72,17 @@
|
||||
#include "../common/patches/patches.h"
|
||||
#include "zoneserver.h"
|
||||
#include "console.h"
|
||||
#include "LoginServer.h"
|
||||
#include "LoginServerList.h"
|
||||
#include "EQWHTTPHandler.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "login_server.h"
|
||||
#include "login_server_list.h"
|
||||
#include "eqw_http_handler.h"
|
||||
#include "world_config.h"
|
||||
#include "zoneserver.h"
|
||||
#include "zonelist.h"
|
||||
#include "clientlist.h"
|
||||
#include "LauncherList.h"
|
||||
#include "launcher_list.h"
|
||||
#include "wguild_mgr.h"
|
||||
#include "lfplist.h"
|
||||
#include "AdventureManager.h"
|
||||
#include "adventure_manager.h"
|
||||
#include "ucs.h"
|
||||
#include "queryserv.h"
|
||||
|
||||
|
||||
@ -29,8 +29,8 @@ typedef const char Const_char;
|
||||
|
||||
#ifdef EMBPERL
|
||||
#include "../common/debug.h"
|
||||
#include "EQWParser.h"
|
||||
#include "EQLConfig.h"
|
||||
#include "eqw_parser.h"
|
||||
#include "eql_config.h"
|
||||
|
||||
#ifdef seed
|
||||
#undef seed
|
||||
@ -29,8 +29,8 @@ typedef const char Const_char;
|
||||
|
||||
#ifdef EMBPERL
|
||||
#include "../common/debug.h"
|
||||
#include "EQWParser.h"
|
||||
#include "EQW.h"
|
||||
#include "eqw_parser.h"
|
||||
#include "eqw.h"
|
||||
|
||||
#ifdef seed
|
||||
#undef seed
|
||||
@ -29,8 +29,8 @@ typedef const char Const_char;
|
||||
|
||||
#ifdef EMBPERL
|
||||
#include "../common/debug.h"
|
||||
#include "EQWParser.h"
|
||||
#include "HTTPRequest.h"
|
||||
#include "eqw_parser.h"
|
||||
#include "http_request.h"
|
||||
|
||||
#ifdef seed
|
||||
#undef seed
|
||||
@ -1,6 +1,6 @@
|
||||
#include "../common/debug.h"
|
||||
#include "queryserv.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "world_config.h"
|
||||
#include "clientlist.h"
|
||||
#include "zonelist.h"
|
||||
#include "../common/logsys.h"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
#include "../common/debug.h"
|
||||
#include "ucs.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "world_config.h"
|
||||
#include "../common/logsys.h"
|
||||
#include "../common/logtypes.h"
|
||||
#include "../common/md5.h"
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
#include "../common/debug.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "world_config.h"
|
||||
|
||||
WorldConfig *WorldConfig::_world_config = nullptr;
|
||||
|
||||
@ -26,7 +26,7 @@
|
||||
#include <iostream>
|
||||
#include <cstdlib>
|
||||
#include <vector>
|
||||
#include "sofCharCreateData.h"
|
||||
#include "sof_char_create_data.h"
|
||||
|
||||
WorldDatabase database;
|
||||
extern std::vector<RaceClassAllocation> character_create_allocations;
|
||||
|
||||
@ -18,10 +18,10 @@
|
||||
#include "../common/debug.h"
|
||||
#include "zonelist.h"
|
||||
#include "zoneserver.h"
|
||||
#include "WorldTCPConnection.h"
|
||||
#include "world_tcp_connection.h"
|
||||
#include "worlddb.h"
|
||||
#include "console.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "world_config.h"
|
||||
#include "../common/servertalk.h"
|
||||
#include "../common/string_util.h"
|
||||
|
||||
|
||||
@ -18,14 +18,14 @@
|
||||
#include "../common/debug.h"
|
||||
#include "zoneserver.h"
|
||||
#include "clientlist.h"
|
||||
#include "LoginServer.h"
|
||||
#include "LoginServerList.h"
|
||||
#include "login_server.h"
|
||||
#include "login_server_list.h"
|
||||
#include "zonelist.h"
|
||||
#include "worlddb.h"
|
||||
#include "console.h"
|
||||
#include "client.h"
|
||||
#include "../common/md5.h"
|
||||
#include "WorldConfig.h"
|
||||
#include "world_config.h"
|
||||
#include "../common/guilds.h"
|
||||
#include "../common/packet_dump.h"
|
||||
#include "../common/misc.h"
|
||||
@ -33,7 +33,7 @@
|
||||
#include "cliententry.h"
|
||||
#include "wguild_mgr.h"
|
||||
#include "lfplist.h"
|
||||
#include "AdventureManager.h"
|
||||
#include "adventure_manager.h"
|
||||
#include "ucs.h"
|
||||
#include "queryserv.h"
|
||||
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
#ifndef ZONESERVER_H
|
||||
#define ZONESERVER_H
|
||||
|
||||
#include "WorldTCPConnection.h"
|
||||
#include "world_tcp_connection.h"
|
||||
#include "../common/emu_tcp_connection.h"
|
||||
#include <string.h>
|
||||
#include <string>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user