genesis-3d_engine/Engine/foundation/core/rtti.h
zhongdaohuan 6e8fbca745 genesis-3d engine version 1.3.
match the genesis editor version 1.3.0.653.
2014-05-05 14:50:33 +08:00

152 lines
5.0 KiB
Objective-C

/****************************************************************************
Copyright (c) 2006, Radon Labs GmbH
Copyright (c) 2011-2013,WebJet Business Division,CYOU
http://www.genesis-3d.com.cn
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#pragma once
//------------------------------------------------------------------------------
/**
@class Core::Rtti
Nebula3's runtime type information for one class. Every class derived
from Core::RefCounted should use the macros __DeclareClass and __ImplementClass
to properly initialize the runtime type information for the class. This
will also automatically register the class with the Core::Factory object
to implement object construction from class name string or fourcc code.
*/
#include "core/types.h"
#include "core/factory.h"
#include "core/sysfunc.h"
#include "util/string.h"
#include "util/fourcc.h"
//------------------------------------------------------------------------------
namespace Core
{
class RefCounted;
class Rtti
{
public:
/// define a creation callback function prototype
typedef RefCounted* (*Creator)();
/// constructor
Rtti(const char* className, Util::FourCC fcc, Creator creatorFunc, const Core::Rtti* parentClass, SizeT instSize);
/// legacy constructor without FourCC for Mangalore compatibility
Rtti(const char* className, Creator creatorFunc, const Core::Rtti* parentClass, SizeT instSize);
/// equality operator
bool operator==(const Rtti& rhs) const;
/// inequality operator
bool operator!=(const Rtti& rhs) const;
/// get class name
const Util::String& GetName() const;
/// get four character code of class
Util::FourCC GetFourCC() const;
/// get pointer to parent class
const Core::Rtti* GetParent() const;
/// get instance size in bytes
SizeT GetInstanceSize() const;
/// create an object of this class
RefCounted* Create() const;
/// return true if this rtti is equal or derived from to other rtti
bool IsDerivedFrom(const Rtti& other) const;
/// return true if this rtti is equal or derived from to other rtti, by string
bool IsDerivedFrom(const Util::String& otherClassName) const;
/// return true if this rtti is equal or derived from to other rtti, by fourcc
bool IsDerivedFrom(const Util::FourCC& otherClassFourCC) const;
/// allocate instance memory block (called by class new operator)
void* AllocInstanceMemory();
/// free instance memory block (called by class delete operator)
void FreeInstanceMemory(void* ptr);
private:
/// constructor method, called from the various constructors
void Construct(const char* className, Util::FourCC fcc, Creator creatorFunc, const Core::Rtti* parentClass, SizeT instSize);
Util::String name;
const Core::Rtti* parent;
Util::FourCC fourCC;
Creator creator;
SizeT instanceSize;
};
//------------------------------------------------------------------------------
/**
*/
inline bool
Rtti::operator==(const Rtti& rhs) const
{
return this == &rhs;
}
//------------------------------------------------------------------------------
/**
*/
inline bool
Rtti::operator!=(const Rtti& rhs) const
{
return this != &rhs;
}
//------------------------------------------------------------------------------
/**
*/
inline const Util::String&
Rtti::GetName() const
{
return this->name;
}
//------------------------------------------------------------------------------
/**
*/
inline Util::FourCC
Rtti::GetFourCC() const
{
return this->fourCC;
}
//------------------------------------------------------------------------------
/**
*/
inline const Core::Rtti*
Rtti::GetParent() const
{
return this->parent;
}
//------------------------------------------------------------------------------
/**
*/
inline SizeT
Rtti::GetInstanceSize() const
{
return this->instanceSize;
}
#include "core/rttimacros.h"
} // namespace Core
//------------------------------------------------------------------------------