7ff6028f2f70912b3d2c9d7119a494105e08dd4d
[supertux.git] / src / object_factory.h
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2004 Ricardo Cruz <rick2@aeiou.pt>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 #ifndef OBJECT_FACTORY_H
20 #define OBJECT_FACTORY_H
21
22 #include <string>
23 #include <map>
24
25 #include "lisp/lisp.h"
26 #include "special/game_object.h"
27 #include "math/vector.h"
28
29 using namespace SuperTux;
30
31 class Factory
32 {
33 public:
34   virtual ~Factory()
35   { }
36     
37   /** Creates a new gameobject from a lisp node.
38    * Remember to delete the objects later
39    */
40   virtual GameObject* create_object(const lisp::Lisp& reader) = 0;
41 };
42
43 typedef std::map<std::string, Factory*> Factories;
44 extern Factories* object_factories;
45
46 GameObject* create_object(const std::string& name, const lisp::Lisp& reader);
47 GameObject* create_object(const std::string& name, const Vector& pos);
48
49 /** comment from Matze:
50  * Yes I know macros are evil, but in this specific case they save
51  * A LOT of typing and evil code duplication.
52  * I'll happily accept alternatives if someone can present me one that does
53  * not involve typing 4 or more lines for each object class
54  */
55 #define IMPLEMENT_FACTORY(CLASS, NAME)                            \
56 class INTERN_##CLASS##Factory : public Factory                    \
57 {                                                                 \
58 public:                                                           \
59   INTERN_##CLASS##Factory()                                       \
60   {                                                               \
61     if(object_factories == 0)                                     \
62       object_factories = new Factories;                           \
63                                                                   \
64     object_factories->insert(std::make_pair(NAME, this));         \
65   }                                                               \
66                                                                   \
67   virtual GameObject* create_object(const lisp::Lisp& reader)     \
68   {                                                               \
69     return new CLASS(reader);                                     \
70   }                                                               \
71 };                                                                \
72 static INTERN_##CLASS##Factory factory_##CLASS;
73
74 #endif