More renames

This commit is contained in:
KimLS 2014-08-21 23:05:21 -07:00
parent cd0824ee71
commit 5bf49d2ef9
25 changed files with 68 additions and 68 deletions

View File

@ -1,37 +1,37 @@
CMAKE_MINIMUM_REQUIRED(VERSION 2.8) CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
SET(eqlogin_sources SET(eqlogin_sources
Client.cpp client.cpp
ClientManager.cpp client_manager.cpp
Config.cpp config.cpp
DatabaseMySQL.cpp database_mysql.cpp
DatabasePostgreSQL.cpp database_postgresql.cpp
ErrorLog.cpp error_log.cpp
Main.cpp main.cpp
ServerManager.cpp server_manager.cpp
WorldServer.cpp world_server.cpp
) )
IF(MSVC OR MINGW) IF(MSVC OR MINGW)
ADD_DEFINITIONS(-DNOMINMAX) ADD_DEFINITIONS(-DNOMINMAX)
SET(eqlogin_sources ${eqlogin_sources} Encryption.cpp) SET(eqlogin_sources ${eqlogin_sources} encryption.cpp)
ENDIF(MSVC OR MINGW) ENDIF(MSVC OR MINGW)
SET(eqlogin_headers SET(eqlogin_headers
Client.h client.h
ClientManager.h client_manager.h
Config.h config.h
Database.h database.h
DatabaseMySQL.h database_mysql.h
DatabasePostgreSQL.h database_postgresql.h
Encryption.h encryption.h
EQCryptoAPI.h eq_crypto_api.h
ErrorLog.h error_log.h
LoginServer.h login_server.h
LoginStructures.h login_structures.h
Options.h options.h
ServerManager.h server_manager.h
WorldServer.h world_server.h
) )
IF(UNIX) IF(UNIX)

View File

@ -15,10 +15,10 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "Client.h" #include "client.h"
#include "ErrorLog.h" #include "error_log.h"
#include "LoginServer.h" #include "login_server.h"
#include "LoginStructures.h" #include "login_structures.h"
#include "../common/misc_functions.h" #include "../common/misc_functions.h"
extern ErrorLog *server_log; extern ErrorLog *server_log;

View File

@ -23,7 +23,7 @@
#include "../common/eq_stream_type.h" #include "../common/eq_stream_type.h"
#include "../common/eq_stream_factory.h" #include "../common/eq_stream_factory.h"
#ifndef WIN32 #ifndef WIN32
#include "EQCryptoAPI.h" #include "eq_crypto_api.h"
#endif #endif
#include <string> #include <string>

View File

@ -15,9 +15,9 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "ClientManager.h" #include "client_manager.h"
#include "ErrorLog.h" #include "error_log.h"
#include "LoginServer.h" #include "login_server.h"
extern ErrorLog *server_log; extern ErrorLog *server_log;
extern LoginServer server; extern LoginServer server;

View File

@ -22,7 +22,7 @@
#include "../common/opcodemgr.h" #include "../common/opcodemgr.h"
#include "../common/eq_stream_type.h" #include "../common/eq_stream_type.h"
#include "../common/eq_stream_factory.h" #include "../common/eq_stream_factory.h"
#include "Client.h" #include "client.h"
#include <list> #include <list>
using namespace std; using namespace std;

View File

@ -16,8 +16,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "../common/debug.h" #include "../common/debug.h"
#include "Config.h" #include "config.h"
#include "ErrorLog.h" #include "error_log.h"
extern ErrorLog *server_log; extern ErrorLog *server_log;
/** /**

View File

@ -16,12 +16,12 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "../common/debug.h" #include "../common/debug.h"
#include "Database.h" #include "database.h"
#ifdef EQEMU_MYSQL_ENABLED #ifdef EQEMU_MYSQL_ENABLED
#include "DatabaseMySQL.h" #include "database_mysql.h"
#include "ErrorLog.h" #include "error_log.h"
#include "LoginServer.h" #include "login_server.h"
extern ErrorLog *server_log; extern ErrorLog *server_log;
extern LoginServer server; extern LoginServer server;

View File

@ -18,7 +18,7 @@
#ifndef EQEMU_DATABASEMYSQL_H #ifndef EQEMU_DATABASEMYSQL_H
#define EQEMU_DATABASEMYSQL_H #define EQEMU_DATABASEMYSQL_H
#include "Database.h" #include "database.h"
#ifdef EQEMU_MYSQL_ENABLED #ifdef EQEMU_MYSQL_ENABLED
#include <string> #include <string>

View File

@ -16,12 +16,12 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "../common/debug.h" #include "../common/debug.h"
#include "Database.h" #include "database.h"
#ifdef EQEMU_POSTGRESQL_ENABLED #ifdef EQEMU_POSTGRESQL_ENABLED
#include "DatabasePostgreSQL.h" #include "database_postgresql.h"
#include "ErrorLog.h" #include "error_log.h"
#include "LoginServer.h" #include "login_server.h"
extern ErrorLog *server_log; extern ErrorLog *server_log;
extern LoginServer server; extern LoginServer server;

View File

@ -18,7 +18,7 @@
#ifndef EQEMU_DATABASEPOSTGRESQL_H #ifndef EQEMU_DATABASEPOSTGRESQL_H
#define EQEMU_DATABASEPOSTGRESQL_H #define EQEMU_DATABASEPOSTGRESQL_H
#include "Database.h" #include "database.h"
#ifdef EQEMU_POSTGRESQL_ENABLED #ifdef EQEMU_POSTGRESQL_ENABLED
#include <string> #include <string>

View File

@ -16,8 +16,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "../common/debug.h" #include "../common/debug.h"
#include "Encryption.h" #include "encryption.h"
#include "ErrorLog.h" #include "error_log.h"
#include <string> #include <string>
extern ErrorLog *server_log; extern ErrorLog *server_log;

View File

@ -16,7 +16,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <string.h> #include <string.h>
#include "ErrorLog.h" #include "error_log.h"
const char *eqLogTypes[_log_largest_type] = const char *eqLogTypes[_log_largest_type] =
{ {

View File

@ -18,15 +18,15 @@
#ifndef EQEMU_LOGINSERVER_H #ifndef EQEMU_LOGINSERVER_H
#define EQEMU_LOGINSERVER_H #define EQEMU_LOGINSERVER_H
#include "ErrorLog.h" #include "error_log.h"
#include "Config.h" #include "config.h"
#include "Database.h" #include "database.h"
#include "DatabaseMySQL.h" #include "database_mysql.h"
#include "DatabasePostgreSQL.h" #include "database_postgresql.h"
#include "Encryption.h" #include "encryption.h"
#include "Options.h" #include "options.h"
#include "ServerManager.h" #include "server_manager.h"
#include "ClientManager.h" #include "client_manager.h"
/** /**
* Login server struct, contains every variable for the server that needs to exist * Login server struct, contains every variable for the server that needs to exist

View File

@ -22,7 +22,7 @@
#include "../common/timer.h" #include "../common/timer.h"
#include "../common/platform.h" #include "../common/platform.h"
#include "../common/crash.h" #include "../common/crash.h"
#include "LoginServer.h" #include "login_server.h"
#include <time.h> #include <time.h>
#include <stdlib.h> #include <stdlib.h>
#include <string> #include <string>

View File

@ -15,10 +15,10 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "ServerManager.h" #include "server_manager.h"
#include "LoginServer.h" #include "login_server.h"
#include "ErrorLog.h" #include "error_log.h"
#include "LoginStructures.h" #include "login_structures.h"
#include <stdlib.h> #include <stdlib.h>
extern ErrorLog *server_log; extern ErrorLog *server_log;

View File

@ -24,8 +24,8 @@
#include "../common/emu_tcp_server.h" #include "../common/emu_tcp_server.h"
#include "../common/servertalk.h" #include "../common/servertalk.h"
#include "../common/packet_dump.h" #include "../common/packet_dump.h"
#include "WorldServer.h" #include "world_server.h"
#include "Client.h" #include "client.h"
#include <list> #include <list>
/** /**

View File

@ -15,10 +15,10 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "WorldServer.h" #include "world_server.h"
#include "ErrorLog.h" #include "error_log.h"
#include "LoginServer.h" #include "login_server.h"
#include "LoginStructures.h" #include "login_structures.h"
extern ErrorLog *server_log; extern ErrorLog *server_log;
extern LoginServer server; extern LoginServer server;