/* Crystal Space Entity Layer Copyright (C) 2001 by Jorrit Tyberghein This file was written by Matze Braun This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef __FACTTMPL_H__ #define __FACTTMPL_H__ /** * This macro declares a factory class for a property class. Note that your * Property Class name must be of the form celPcMyName if you've given * MyName as Factory Name. */ #define CEL_DECLARE_FACTORY(name) \ class celPf##name : public iCelPropertyClassFactory, public iComponent \ { \ private: \ iObjectRegistry* object_reg; \ \ public: \ celPf##name (iBase* parent); \ virtual ~celPf##name (); \ bool Initialize (iObjectRegistry* object_reg); \ SCF_DECLARE_IBASE; \ virtual const char* GetName() const; \ virtual csPtr CreatePropertyClass (); \ }; /** * This macro implements a property class factory, the first argument is the * name you've given at the declaration, the 2nd argument is the string the * factory will be registered with. * Note: You have to export the classtable yourself as one could have multiple * factories in 1 file. The name to export for the factory MyFactory is: * celPfMyFactory */ #define CEL_IMPLEMENT_FACTORY(name, strname) \ SCF_IMPLEMENT_FACTORY (celPf##name) \ SCF_IMPLEMENT_IBASE (celPf##name) \ SCF_IMPLEMENTS_INTERFACE (iCelPropertyClassFactory) \ SCF_IMPLEMENTS_INTERFACE (iComponent) \ SCF_IMPLEMENT_IBASE_END \ celPf##name::celPf##name (iBase *parent) \ { \ SCF_CONSTRUCT_IBASE (parent); \ } \ celPf##name::~celPf##name() \ { \ SCF_DESTRUCT_IBASE (); \ } \ bool celPf##name::Initialize (iObjectRegistry* object_reg) \ { \ celPf##name::object_reg = object_reg; \ csRef pl (CS_QUERY_REGISTRY(object_reg, iCelPlLayer)); \ if (!pl) return false; \ pl->RegisterPropertyClassFactory(this); \ return true; \ } \ const char* celPf##name::GetName() const \ { \ return strname; \ } \ csPtr celPf##name::CreatePropertyClass() \ { \ return csPtr (new celPc##name (object_reg)); \ } \ #endif