Skip to content

Commit 292c9cc

Browse files
committed
Project/Rename: Typo
1 parent 3131ea8 commit 292c9cc

File tree

116 files changed

+428
-428
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+428
-428
lines changed

src/framework/Dynamic/FactoryHolder.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_FACTORY_HOLDER
22-
#define lOOKING4GROUP_FACTORY_HOLDER
21+
#ifndef LOOKING4GROUP_FACTORY_HOLDER
22+
#define LOOKING4GROUP_FACTORY_HOLDER
2323

2424
#include "ace/Singleton.h"
2525

src/framework/Dynamic/ObjectRegistry.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_OBJECTREGISTRY_H
22-
#define lOOKING4GROUP_OBJECTREGISTRY_H
21+
#ifndef LOOKING4GROUP_OBJECTREGISTRY_H
22+
#define LOOKING4GROUP_OBJECTREGISTRY_H
2323

2424
#include "Platform/Define.h"
2525
#include "Utilities/UnorderedMap.h"

src/framework/GameSystem/Grid.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_GRID_H
22-
#define lOOKING4GROUP_GRID_H
21+
#ifndef LOOKING4GROUP_GRID_H
22+
#define LOOKING4GROUP_GRID_H
2323

2424
/*
2525
@class Grid

src/framework/GameSystem/GridLoader.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_GRIDLOADER_H
22-
#define lOOKING4GROUP_GRIDLOADER_H
21+
#ifndef LOOKING4GROUP_GRIDLOADER_H
22+
#define LOOKING4GROUP_GRIDLOADER_H
2323

2424
/**
2525
@class GridLoader

src/framework/GameSystem/GridReference.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ template<class OBJECT>
2727
class GridRefManager;
2828

2929
template<class OBJECT>
30-
class lOOKING4GROUP_IMPORT_EXPORT GridReference : public Reference<GridRefManager<OBJECT>, OBJECT>
30+
class LOOKING4GROUP_IMPORT_EXPORT GridReference : public Reference<GridRefManager<OBJECT>, OBJECT>
3131
{
3232
protected:
3333
void targetObjectBuildLink()

src/framework/GameSystem/NGrid.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_NGRID_H
22-
#define lOOKING4GROUP_NGRID_H
21+
#ifndef LOOKING4GROUP_NGRID_H
22+
#define LOOKING4GROUP_NGRID_H
2323

2424
/** NGrid is nothing more than a wrapper of the Grid with an NxN cells
2525
*/

src/framework/GameSystem/TypeContainer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_TYPECONTAINER_H
22-
#define lOOKING4GROUP_TYPECONTAINER_H
21+
#ifndef LOOKING4GROUP_TYPECONTAINER_H
22+
#define LOOKING4GROUP_TYPECONTAINER_H
2323

2424
/*
2525
* Here, you'll find a series of containers that allow you to hold multiple

src/framework/GameSystem/TypeContainerVisitor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_TYPECONTAINERVISITOR_H
22-
#define lOOKING4GROUP_TYPECONTAINERVISITOR_H
21+
#ifndef LOOKING4GROUP_TYPECONTAINERVISITOR_H
22+
#define LOOKING4GROUP_TYPECONTAINERVISITOR_H
2323

2424
/*
2525
* @class TypeContainerVisitor is implemented as a visitor pattern. It is

src/framework/Platform/CompilerDefs.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_COMPILERDEFS_H
22-
#define lOOKING4GROUP_COMPILERDEFS_H
21+
#ifndef LOOKING4GROUP_COMPILERDEFS_H
22+
#define LOOKING4GROUP_COMPILERDEFS_H
2323

2424
#define PLATFORM_WINDOWS 0
2525
#define PLATFORM_UNIX 1

src/framework/Platform/Define.h

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_DEFINE_H
22-
#define lOOKING4GROUP_DEFINE_H
21+
#ifndef LOOKING4GROUP_DEFINE_H
22+
#define LOOKING4GROUP_DEFINE_H
2323

2424
#include <sys/types.h>
2525

@@ -30,74 +30,74 @@
3030

3131
#include "Platform/CompilerDefs.h"
3232

33-
#define lOOKING4GROUP_LITTLEENDIAN 0
34-
#define lOOKING4GROUP_BIGENDIAN 1
33+
#define LOOKING4GROUP_LITTLEENDIAN 0
34+
#define LOOKING4GROUP_BIGENDIAN 1
3535

36-
#if !defined(lOOKING4GROUP_ENDIAN)
36+
#if !defined(LOOKING4GROUP_ENDIAN)
3737
# if defined (ACE_BIG_ENDIAN)
38-
# define lOOKING4GROUP_ENDIAN lOOKING4GROUP_BIGENDIAN
38+
# define LOOKING4GROUP_ENDIAN LOOKING4GROUP_BIGENDIAN
3939
# else //ACE_BYTE_ORDER != ACE_BIG_ENDIAN
40-
# define lOOKING4GROUP_ENDIAN lOOKING4GROUP_LITTLEENDIAN
40+
# define LOOKING4GROUP_ENDIAN LOOKING4GROUP_LITTLEENDIAN
4141
# endif //ACE_BYTE_ORDER
42-
#endif //lOOKING4GROUP_ENDIAN
42+
#endif //LOOKING4GROUP_ENDIAN
4343

44-
typedef ACE_SHLIB_HANDLE lOOKING4GROUP_LIBRARY_HANDLE;
44+
typedef ACE_SHLIB_HANDLE LOOKING4GROUP_LIBRARY_HANDLE;
4545

46-
#define lOOKING4GROUP_SCRIPT_NAME "trinityscript"
47-
#define lOOKING4GROUP_SCRIPT_SUFFIX ACE_DLL_SUFFIX
48-
#define lOOKING4GROUP_SCRIPT_PREFIX ACE_DLL_PREFIX
49-
#define lOOKING4GROUP_LOAD_LIBRARY(libname) ACE_OS::dlopen(libname)
50-
#define lOOKING4GROUP_CLOSE_LIBRARY(hlib) ACE_OS::dlclose(hlib)
51-
#define lOOKING4GROUP_GET_PROC_ADDR(hlib,name) ACE_OS::dlsym(hlib,name)
46+
#define LOOKING4GROUP_SCRIPT_NAME "trinityscript"
47+
#define LOOKING4GROUP_SCRIPT_SUFFIX ACE_DLL_SUFFIX
48+
#define LOOKING4GROUP_SCRIPT_PREFIX ACE_DLL_PREFIX
49+
#define LOOKING4GROUP_LOAD_LIBRARY(libname) ACE_OS::dlopen(libname)
50+
#define LOOKING4GROUP_CLOSE_LIBRARY(hlib) ACE_OS::dlclose(hlib)
51+
#define LOOKING4GROUP_GET_PROC_ADDR(hlib,name) ACE_OS::dlsym(hlib,name)
5252

5353
#if PLATFORM == PLATFORM_WINDOWS
5454
# ifndef THIS_IS_SCRIPT_DLL
55-
# define lOOKING4GROUP_EXPORT __declspec(dllexport)
55+
# define LOOKING4GROUP_EXPORT __declspec(dllexport)
5656
# else
57-
# define lOOKING4GROUP_EXPORT
57+
# define LOOKING4GROUP_EXPORT
5858
# endif
59-
# define lOOKING4GROUP_IMPORT __cdecl
60-
# define lOOKING4GROUP_PATH_MAX MAX_PATH
59+
# define LOOKING4GROUP_IMPORT __cdecl
60+
# define LOOKING4GROUP_PATH_MAX MAX_PATH
6161
#else //PLATFORM != PLATFORM_WINDOWS
62-
# define lOOKING4GROUP_EXPORT
62+
# define LOOKING4GROUP_EXPORT
6363
# if defined(__APPLE_CC__) && defined(BIG_ENDIAN)
64-
# define lOOKING4GROUP_IMPORT __attribute__ ((longcall))
64+
# define LOOKING4GROUP_IMPORT __attribute__ ((longcall))
6565
# elif defined(__x86_64__)
66-
# define lOOKING4GROUP_IMPORT
66+
# define LOOKING4GROUP_IMPORT
6767
# else
68-
# define lOOKING4GROUP_IMPORT __attribute__ ((cdecl))
68+
# define LOOKING4GROUP_IMPORT __attribute__ ((cdecl))
6969
# endif //__APPLE_CC__ && BIG_ENDIAN
70-
# define lOOKING4GROUP_PATH_MAX PATH_MAX
70+
# define LOOKING4GROUP_PATH_MAX PATH_MAX
7171
#endif //PLATFORM
7272

7373
//
74-
// Use lOOKING4GROUP_IMPORT_EXPORT define to proper export from core/shared/etc to script dll
74+
// Use LOOKING4GROUP_IMPORT_EXPORT define to proper export from core/shared/etc to script dll
7575
// While compile core - defined like __declspec(dllexport)
7676
// While compile script dll - defined like __declspec(dllimport)
7777
//
78-
// Use just lOOKING4GROUP_EXPORT for static objects
78+
// Use just LOOKING4GROUP_EXPORT for static objects
7979
//
8080
// Make sense only in windows OS
8181
//
8282
#if PLATFORM == PLATFORM_WINDOWS
8383
# ifndef THIS_IS_SCRIPT_DLL
84-
# define lOOKING4GROUP_IMPORT_EXPORT __declspec(dllexport)
84+
# define LOOKING4GROUP_IMPORT_EXPORT __declspec(dllexport)
8585
# else
86-
# define lOOKING4GROUP_IMPORT_EXPORT __declspec(dllimport)
86+
# define LOOKING4GROUP_IMPORT_EXPORT __declspec(dllimport)
8787
# endif
8888
#else //PLATFORM != PLATFORM_WINDOWS
89-
# define lOOKING4GROUP_IMPORT_EXPORT
89+
# define LOOKING4GROUP_IMPORT_EXPORT
9090
# define DECLSPEC_NORETURN
9191
#endif //PLATFORM
9292

9393

9494
#if !defined(DEBUG)
95-
# define lOOKING4GROUP_INLINE inline
95+
# define LOOKING4GROUP_INLINE inline
9696
#else //DEBUG
97-
# if !defined(lOOKING4GROUP_DEBUG)
98-
# define lOOKING4GROUP_DEBUG
99-
# endif //lOOKING4GROUP_DEBUG
100-
# define lOOKING4GROUP_INLINE
97+
# if !defined(LOOKING4GROUP_DEBUG)
98+
# define LOOKING4GROUP_DEBUG
99+
# endif //LOOKING4GROUP_DEBUG
100+
# define LOOKING4GROUP_INLINE
101101
#endif //!DEBUG
102102

103103
#if COMPILER == COMPILER_GNU
@@ -124,5 +124,5 @@ typedef uint32 DWORD;
124124

125125
typedef uint64 OBJECT_HANDLE;
126126

127-
#endif //lOOKING4GROUP_DEFINE_H
127+
#endif //LOOKING4GROUP_DEFINE_H
128128

src/framework/Utilities/ByteConverter.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_BYTECONVERTER_H
22-
#define lOOKING4GROUP_BYTECONVERTER_H
21+
#ifndef LOOKING4GROUP_BYTECONVERTER_H
22+
#define LOOKING4GROUP_BYTECONVERTER_H
2323

2424
/** ByteConverter reverse your byte order. This is use
2525
for cross platform where they have different endians.
@@ -46,7 +46,7 @@ namespace ByteConverter
4646
}
4747
}
4848

49-
#if lOOKING4GROUP_ENDIAN == lOOKING4GROUP_BIGENDIAN
49+
#if LOOKING4GROUP_ENDIAN == LOOKING4GROUP_BIGENDIAN
5050
template<typename T> inline void EndianConvert(T& val) { ByteConverter::apply<T>(&val); }
5151
template<typename T> inline void EndianConvertReverse(T&) { }
5252
#else

src/framework/Utilities/Callback.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1717
*/
1818

19-
#ifndef lOOKING4GROUP_CALLBACK_H
20-
#define lOOKING4GROUP_CALLBACK_H
19+
#ifndef LOOKING4GROUP_CALLBACK_H
20+
#define LOOKING4GROUP_CALLBACK_H
2121

2222
//defines to simplify multi param templates code and readablity
2323
#define TYPENAMES_1 typename T1

src/framework/Utilities/EventProcessor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include <algorithm>
2929
// Note. All times are in milliseconds here.
3030

31-
class lOOKING4GROUP_IMPORT_EXPORT BasicEvent
31+
class LOOKING4GROUP_IMPORT_EXPORT BasicEvent
3232
{
3333
public:
3434
BasicEvent() { to_Abort = false; }
@@ -55,7 +55,7 @@ class lOOKING4GROUP_IMPORT_EXPORT BasicEvent
5555

5656
typedef std::multimap<uint64, BasicEvent*> EventList;
5757

58-
class lOOKING4GROUP_IMPORT_EXPORT EventProcessor
58+
class LOOKING4GROUP_IMPORT_EXPORT EventProcessor
5959
{
6060
public:
6161
EventProcessor();

src/framework/Utilities/TypeList.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_TYPELIST_H
22-
#define lOOKING4GROUP_TYPELIST_H
21+
#ifndef LOOKING4GROUP_TYPELIST_H
22+
#define LOOKING4GROUP_TYPELIST_H
2323

2424
/*
2525
@struct TypeList

src/framework/Utilities/UnorderedMap.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_UNORDERED_MAP_H
22-
#define lOOKING4GROUP_UNORDERED_MAP_H
21+
#ifndef LOOKING4GROUP_UNORDERED_MAP_H
22+
#define LOOKING4GROUP_UNORDERED_MAP_H
2323

2424
#include "Platform/CompilerDefs.h"
2525
#include "Platform/Define.h"

src/game/Bag.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_BAG_H
22-
#define lOOKING4GROUP_BAG_H
21+
#ifndef LOOKING4GROUP_BAG_H
22+
#define LOOKING4GROUP_BAG_H
2323

2424
// Maximum 36 Slots ((CONTAINER_END - CONTAINER_FIELD_SLOT_1)/2
2525
#define MAX_BAG_SIZE 36 // 2.0.12

src/game/BattleGround.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ This class is used to:
260260
3. some certain cases, same for all battlegrounds
261261
4. It has properties same for all battlegrounds
262262
*/
263-
class lOOKING4GROUP_IMPORT_EXPORT BattleGround
263+
class LOOKING4GROUP_IMPORT_EXPORT BattleGround
264264
{
265265
friend class BattleGroundMgr;
266266

src/game/Camera.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class WorldPacket;
2929
class Player;
3030

3131
/// Camera - object-receiver. Receives broadcast packets from nearby worldobjects, object visibility changes and sends them to client
32-
class lOOKING4GROUP_IMPORT_EXPORT Camera
32+
class LOOKING4GROUP_IMPORT_EXPORT Camera
3333
{
3434
friend class ViewPoint;
3535
public:
@@ -77,7 +77,7 @@ class lOOKING4GROUP_IMPORT_EXPORT Camera
7777
};
7878

7979
/// Object-observer, notifies farsight object state to cameras that attached to it
80-
class lOOKING4GROUP_IMPORT_EXPORT ViewPoint
80+
class LOOKING4GROUP_IMPORT_EXPORT ViewPoint
8181
{
8282
friend class Camera;
8383

src/game/Cell.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1717
*/
1818

19-
#ifndef lOOKING4GROUP_CELL_H
20-
#define lOOKING4GROUP_CELL_H
19+
#ifndef LOOKING4GROUP_CELL_H
20+
#define LOOKING4GROUP_CELL_H
2121

2222
#include "GameSystem/TypeContainer.h"
2323
#include "GameSystem/TypeContainerVisitor.h"

src/game/CellImpl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1717
*/
1818

19-
#ifndef lOOKING4GROUP_CELLIMPL_H
20-
#define lOOKING4GROUP_CELLIMPL_H
19+
#ifndef LOOKING4GROUP_CELLIMPL_H
20+
#define LOOKING4GROUP_CELLIMPL_H
2121

2222
#include "Common.h"
2323
#include "Cell.h"

src/game/CharmInfo.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ struct Cooldown
5454

5555
typedef UNORDERED_MAP<uint32 /*category*/, Cooldown> CooldownList;
5656

57-
class lOOKING4GROUP_IMPORT_EXPORT CooldownMgr
57+
class LOOKING4GROUP_IMPORT_EXPORT CooldownMgr
5858
{
5959
public:
6060
CooldownMgr() {}
@@ -78,7 +78,7 @@ class lOOKING4GROUP_IMPORT_EXPORT CooldownMgr
7878
CooldownList m_SpellCooldowns;
7979
};
8080

81-
struct lOOKING4GROUP_IMPORT_EXPORT CharmInfo
81+
struct LOOKING4GROUP_IMPORT_EXPORT CharmInfo
8282
{
8383
public:
8484
explicit CharmInfo(Unit* unit);

src/game/CombatAI.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1919
*/
2020

21-
#ifndef lOOKING4GROUP_COMBATAI_H
22-
#define lOOKING4GROUP_COMBATAI_H
21+
#ifndef LOOKING4GROUP_COMBATAI_H
22+
#define LOOKING4GROUP_COMBATAI_H
2323

2424
#include "CreatureAI.h"
2525
#include "CreatureAIImpl.h"
@@ -37,7 +37,7 @@ class AggressorAI : public CreatureAI
3737

3838
typedef std::vector<uint32> SpellVct;
3939

40-
class lOOKING4GROUP_IMPORT_EXPORT CombatAI : public CreatureAI
40+
class LOOKING4GROUP_IMPORT_EXPORT CombatAI : public CreatureAI
4141
{
4242
public:
4343
explicit CombatAI(Creature *c) : CreatureAI(c) {}
@@ -53,7 +53,7 @@ class lOOKING4GROUP_IMPORT_EXPORT CombatAI : public CreatureAI
5353
SpellVct spells;
5454
};
5555

56-
class lOOKING4GROUP_IMPORT_EXPORT CasterAI : public CombatAI
56+
class LOOKING4GROUP_IMPORT_EXPORT CasterAI : public CombatAI
5757
{
5858
public:
5959
explicit CasterAI(Creature *c) : CombatAI(c) { m_attackDist = MELEE_RANGE; }

0 commit comments

Comments
 (0)