7e578356f521cd0baa3112c5d39215b88980d4f2
[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   /** Creates a new gameobject from a lisp node.
35    * Remember to delete the objects later
36    */
37   virtual GameObject* create_object(const lisp::Lisp& reader) = 0;
38 };
39
40 typedef std::map<std::string, Factory*> Factories;
41 extern Factories* object_factories;
42
43 GameObject* create_object(const std::string& name, const lisp::Lisp& reader);
44 GameObject* create_object(const std::string& name, const Vector& pos);
45
46 /** comment from Matze:
47  * Yes I know macros are evil, but in this specific case they save
48  * A LOT of typing and evil code duplication.
49  * I'll happily acceppt alternatives if someone can present me one that does
50  * not involve typing 4 or more lines for each object class
51  */
52 #define IMPLEMENT_FACTORY(CLASS, NAME)                            \
53 class INTERN_##CLASS##Factory : public Factory                    \
54 {                                                                 \
55 public:                                                           \
56   INTERN_##CLASS##Factory()                                       \
57   {                                                               \
58     if(object_factories == 0)                                     \
59       object_factories = new Factories;                           \
60                                                                   \
61     object_factories->insert(std::make_pair(NAME, this));         \
62   }                                                               \
63                                                                   \
64   virtual GameObject* create_object(const lisp::Lisp& reader)     \
65   {                                                               \
66     return new CLASS(reader);                                     \
67   }                                                               \
68 };                                                                \
69 static INTERN_##CLASS##Factory factory_##CLASS;
70
71 #endif