Renaming headers is hard work

This commit is contained in:
KimLS 2014-08-21 17:26:32 -07:00
parent 405884f47d
commit 06f18225ce
55 changed files with 64 additions and 69 deletions

View File

@ -19,7 +19,7 @@
#include <stdio.h>
#include "../../common/debug.h"
#include "../../common/shareddb.h"
#include "../../common/EQEmuConfig.h"
#include "../../common/eqemu_config.h"
#include "../../common/platform.h"
#include "../../common/crash.h"
#include "../../common/rulesys.h"

View File

@ -18,7 +18,7 @@
#include "../../common/debug.h"
#include "../../common/shareddb.h"
#include "../../common/EQEmuConfig.h"
#include "../../common/eqemu_config.h"
#include "../../common/platform.h"
#include "../../common/crash.h"
#include "../../common/rulesys.h"

View File

@ -93,14 +93,14 @@ SET(common_sources
)
SET(common_headers
BasePacket.h
base_packet.h
base_data.h
bodytypes.h
breakdowns.h
classes.h
Condition.h
condition.h
crash.h
CRC16.h
crc16.h
crc32.h
database.h
dbasync.h
@ -109,16 +109,16 @@ SET(common_headers
deity.h
emu_opcodes.h
emu_oplist.h
EmuTCPConnection.h
EmuTCPServer.h
emu_tcp_connection.h
emu_tcp_server.h
eq_constants.h
eq_dictionary.h
eq_packet_structs.h
EQDB.h
EQDBRes.h
eqdb.h
eqdb_res.h
eqemu_exception.h
EQEmuConfig.h
EQEmuConfig_elements.h
eqemu_config.h
eqemu_config_elements.h
EQEMuError.h
EQPacket.h
EQStream.h
@ -215,11 +215,6 @@ SET(common_headers
patches/RoF_itemfields.h
patches/RoF_ops.h
patches/RoF_structs.h
#patches/RoF2.h
#patches/RoF2_constants.h
#patches/RoF2_itemfields.h
#patches/RoF2_ops.h
#patches/RoF2_structs.h
patches/Titanium.h
patches/Titanium_constants.h
patches/Titanium_itemfields.h

View File

@ -18,7 +18,7 @@
#ifndef _EQPACKET_H
#define _EQPACKET_H
#include "BasePacket.h"
#include "base_packet.h"
#include "EQStreamType.h"
#include "op_codes.h"
#include "platform.h"

View File

@ -15,7 +15,7 @@
#include "Mutex.h"
#include "../common/opcodemgr.h"
#include "../common/misc.h"
#include "../common/Condition.h"
#include "../common/condition.h"
#include "../common/timer.h"
#define FLAG_COMPRESSED 0x01

View File

@ -5,7 +5,7 @@
#include <queue>
#include <map>
#include "../common/EQStream.h"
#include "../common/Condition.h"
#include "../common/condition.h"
#include "../common/timeoutmgr.h"
#include "../common/opcodemgr.h"
#include "../common/timer.h"

View File

@ -16,7 +16,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "debug.h"
#include "BasePacket.h"
#include "base_packet.h"
#include "misc.h"
#include "packet_dump.h"

View File

@ -17,7 +17,7 @@
*/
#include "debug.h"
#include "Condition.h"
#include "condition.h"
#ifdef _WINDOWS

View File

@ -13,7 +13,7 @@
#include "../common/linked_list.h"
#include "../common/queue.h"
#include "../common/timer.h"
#include "../common/Condition.h"
#include "../common/condition.h"
#include "../common/MySQLRequestResult.h"
class DBcore {

View File

@ -30,8 +30,8 @@ tremendously.
#include <stdio.h>
#include <iomanip>
#include "EmuTCPConnection.h"
#include "EmuTCPServer.h"
#include "emu_tcp_connection.h"
#include "emu_tcp_server.h"
#include "../common/servertalk.h"
#include "../common/packet_dump.h"

View File

@ -1,6 +1,6 @@
#include "debug.h"
#include "EmuTCPServer.h"
#include "EmuTCPConnection.h"
#include "emu_tcp_server.h"
#include "emu_tcp_connection.h"
EmuTCPServer::EmuTCPServer(uint16 iPort, bool iOldFormat)
: TCPServer<EmuTCPConnection>(iPort),

View File

@ -22,7 +22,7 @@
#include "EQPacket.h"
#include "misc.h"
#include "op_codes.h"
#include "CRC16.h"
#include "crc16.h"
#include "platform.h"
#ifndef STATIC_OPCODE
#include "opcodemgr.h"

View File

@ -22,7 +22,7 @@
#include "misc.h"
#include "Mutex.h"
#include "op_codes.h"
#include "CRC16.h"
#include "crc16.h"
#include "platform.h"
#include <string>

View File

@ -16,7 +16,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "debug.h"
#include "EQDB.h"
#include "eqdb.h"
#include "database.h"
#include <mysql.h>
#include <cstring>

View File

@ -22,7 +22,7 @@
#include <vector>
#include <map>
#include "types.h"
#include "EQDBRes.h"
#include "eqdb_res.h"
#include <mysql.h>
//this is the main object exported to perl.

View File

@ -16,7 +16,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "debug.h"
#include "EQDBRes.h"
#include "eqdb_res.h"
#include <mysql.h>
std::vector<std::string> EQDBRes::fetch_row_array() {

View File

@ -16,7 +16,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "../common/debug.h"
#include "EQEmuConfig.h"
#include "eqemu_config.h"
#include "MiscFunctions.h"
#include <iostream>
#include <sstream>

View File

@ -112,14 +112,14 @@ protected:
#define ELEMENT(name) \
void do_##name(TiXmlElement *ele);
#include "EQEmuConfig_elements.h"
#include "eqemu_config_elements.h"
EQEmuConfig() {
// import the needed handler prototypes
#define ELEMENT(name) \
Handlers[#name]=(ElementHandler)&EQEmuConfig::do_##name;
#include "EQEmuConfig_elements.h"
#include "eqemu_config_elements.h"
// Set sane defaults

View File

@ -30,7 +30,7 @@ typedef const char Const_char;
#ifdef EMBPERL
#include "../common/debug.h"
#include "../common/useperl.h"
#include "EQDB.h"
#include "eqdb.h"
#ifdef THIS /* this macro seems to leak out on some systems */
#undef THIS

View File

@ -30,7 +30,7 @@ typedef const char Const_char;
#ifdef EMBPERL
#include "../common/debug.h"
#include "../common/useperl.h"
#include "EQDBRes.h"
#include "eqdb_res.h"
XS(XS_EQDBRes_num_rows); /* prototype to pass -Wmissing-prototypes */

View File

@ -26,7 +26,7 @@
#include <stdarg.h>
#include "worldconn.h"
#include "EQEmuConfig.h"
#include "eqemu_config.h"
#include "md5.h"
#include "database.h"
#include "servertalk.h"

View File

@ -19,7 +19,7 @@
#ifndef WORLDCONNECTION_H
#define WORLDCONNECTION_H
#include "../common/EmuTCPConnection.h"
#include "../common/emu_tcp_connection.h"
#include <string>
class ServerPacket;

View File

@ -20,7 +20,7 @@
#include "ZoneLaunch.h"
#include "worldserver.h"
#include "../common/EQEmuConfig.h"
#include "../common/eqemu_config.h"
//static const uint32 ZONE_RESTART_DELAY = 10000;
//static const uint32 ZONE_TERMINATE_WAIT = 10000;

View File

@ -18,7 +18,7 @@
#include "../common/debug.h"
#include "../common/ProcLauncher.h"
#include "../common/EQEmuConfig.h"
#include "../common/eqemu_config.h"
#include "../common/servertalk.h"
#include "../common/platform.h"
#include "../common/crash.h"

View File

@ -19,7 +19,7 @@
#include "worldserver.h"
#include "../common/servertalk.h"
#include "ZoneLaunch.h"
#include "../common/EQEmuConfig.h"
#include "../common/eqemu_config.h"
#include "../common/StringUtil.h"

View File

@ -20,8 +20,8 @@
#include "../common/debug.h"
#include "../common/EQStreamFactory.h"
#include "../common/EmuTCPConnection.h"
#include "../common/EmuTCPServer.h"
#include "../common/emu_tcp_connection.h"
#include "../common/emu_tcp_server.h"
#include "../common/servertalk.h"
#include "../common/packet_dump.h"
#include "WorldServer.h"

View File

@ -20,8 +20,8 @@
#include "../common/debug.h"
#include "../common/EQStreamFactory.h"
#include "../common/EmuTCPConnection.h"
#include "../common/EmuTCPServer.h"
#include "../common/emu_tcp_connection.h"
#include "../common/emu_tcp_server.h"
#include "../common/servertalk.h"
#include "../common/packet_dump.h"
#include <string>

View File

@ -20,7 +20,7 @@
#ifndef __queryservconfig_H
#define __queryservconfig_H
#include "../common/EQEmuConfig.h"
#include "../common/eqemu_config.h"
class queryservconfig : public EQEmuConfig {
public:

View File

@ -19,7 +19,7 @@
#include <stdio.h>
#include "../common/debug.h"
#include "../common/shareddb.h"
#include "../common/EQEmuConfig.h"
#include "../common/eqemu_config.h"
#include "../common/platform.h"
#include "../common/crash.h"
#include "../common/rulesys.h"

View File

@ -20,7 +20,7 @@
#ifndef __socket_server_config_H
#define __socket_server_config_H
#include "../common/EQEmuConfig.h"
#include "../common/eqemu_config.h"
class socket_server_config : public EQEmuConfig {
public:

View File

@ -25,8 +25,8 @@
#include "chatchannel.h"
#include "../common/EQStreamFactory.h"
#include "../common/EmuTCPConnection.h"
#include "../common/EmuTCPServer.h"
#include "../common/emu_tcp_connection.h"
#include "../common/emu_tcp_server.h"
#include <list>
#include <vector>
#include <string>

View File

@ -20,7 +20,7 @@
#ifndef __ucsconfig_H
#define __ucsconfig_H
#include "../common/EQEmuConfig.h"
#include "../common/eqemu_config.h"
class ucsconfig : public EQEmuConfig {
public:

View File

@ -23,7 +23,7 @@
#include "../common/debug.h"
#include "EQWParser.h"
#include "EQW.h"
#include "../common/EQDB.h"
#include "../common/eqdb.h"
#include "../common/logsys.h"
#include "worlddb.h"

View File

@ -18,7 +18,7 @@
#include "../common/debug.h"
#include "HTTPRequest.h"
#include "EQWHTTPHandler.h"
#include "../common/EQDB.h"
#include "../common/eqdb.h"
#include "../common/SocketLib/HttpdForm.h"
#include <cstdlib>

View File

@ -24,7 +24,7 @@
#include "../common/md5.h"
#include "../common/packet_dump.h"
#include "../common/servertalk.h"
#include "../common/EmuTCPConnection.h"
#include "../common/emu_tcp_connection.h"
#include "../common/StringUtil.h"
#include "worlddb.h"
#include "EQLConfig.h"

View File

@ -18,7 +18,7 @@
#ifndef LAUNCHERLINK_H_
#define LAUNCHERLINK_H_
#include "../common/EmuTCPConnection.h"
#include "../common/emu_tcp_connection.h"
#include "../common/timer.h"
#include <string>
#include <vector>

View File

@ -24,7 +24,7 @@
#include "../common/queue.h"
#include "../common/eq_packet_structs.h"
#include "../common/Mutex.h"
#include "../common/EmuTCPConnection.h"
#include "../common/emu_tcp_connection.h"
class LoginServer{
public:

View File

@ -7,7 +7,7 @@
#include "../common/queue.h"
#include "../common/eq_packet_structs.h"
#include "../common/Mutex.h"
#include "../common/EmuTCPConnection.h"
#include "../common/emu_tcp_connection.h"
#ifdef _WINDOWS
void AutoInitLoginServer(void *tmp);

View File

@ -18,7 +18,7 @@
#ifndef __WorldConfig_H
#define __WorldConfig_H
#include "../common/EQEmuConfig.h"
#include "../common/eqemu_config.h"
class WorldConfig : public EQEmuConfig {
public:

View File

@ -38,7 +38,7 @@ enum {
#include "../common/linked_list.h"
#include "../common/timer.h"
#include "../common/queue.h"
#include "../common/EmuTCPConnection.h"
#include "../common/emu_tcp_connection.h"
#include "WorldTCPConnection.h"
#include "../common/Mutex.h"

View File

@ -68,15 +68,15 @@
#endif
#include "../common/dbasync.h"
#include "../common/emu_tcp_server.h"
#include "../common/patches/patches.h"
#include "zoneserver.h"
#include "console.h"
#include "LoginServer.h"
#include "LoginServerList.h"
#include "EQWHTTPHandler.h"
#include "../common/dbasync.h"
#include "../common/EmuTCPServer.h"
#include "WorldConfig.h"
#include "../common/patches/patches.h"
#include "zoneserver.h"
#include "zonelist.h"
#include "clientlist.h"

View File

@ -6,7 +6,7 @@
#include "../common/logsys.h"
#include "../common/logtypes.h"
#include "../common/md5.h"
#include "../common/EmuTCPConnection.h"
#include "../common/emu_tcp_connection.h"
#include "../common/packet_dump.h"
extern ClientList client_list;

View File

@ -2,7 +2,7 @@
#define QueryServ_H
#include "../common/types.h"
#include "../common/EmuTCPConnection.h"
#include "../common/emu_tcp_connection.h"
#include "../common/servertalk.h"
class QueryServConnection

View File

@ -4,7 +4,7 @@
#include "../common/logsys.h"
#include "../common/logtypes.h"
#include "../common/md5.h"
#include "../common/EmuTCPConnection.h"
#include "../common/emu_tcp_connection.h"
#include "../common/packet_dump.h"
UCSConnection::UCSConnection()

View File

@ -2,7 +2,7 @@
#define UCS_H
#include "../common/types.h"
#include "../common/EmuTCPConnection.h"
#include "../common/emu_tcp_connection.h"
#include "../common/servertalk.h"
class UCSConnection

View File

@ -19,7 +19,7 @@
#define ZONESERVER_H
#include "WorldTCPConnection.h"
#include "../common/EmuTCPConnection.h"
#include "../common/emu_tcp_connection.h"
#include <string.h>
#include <string>

View File

@ -18,7 +18,7 @@
#ifndef __ZoneConfig_H
#define __ZoneConfig_H
#include "../common/EQEmuConfig.h"
#include "../common/eqemu_config.h"
class ZoneConfig : public EQEmuConfig {
public:

View File

@ -18,7 +18,7 @@
#include "../common/debug.h"
#include "../common/logsys.h"
#include "../common/BasePacket.h"
#include "../common/base_packet.h"
#include "mob.h"
#include <stdarg.h>
#include <stdio.h>