~ubuntu-branches/ubuntu/trusty/plee-the-bear/trusty-proposed

« back to all changes in this revision

Viewing changes to bear-engine/core/src/engine/item_brick/with_expression_creation.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Julien Jorge, Julien Jorge
  • Date: 2010-11-17 20:13:34 UTC
  • mfrom: (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20101117201334-o4dp7uq437to7oxb
Tags: 0.5.1-1
[ Julien Jorge ]
* New upstream release (Closes: #565062, #546514).
* Add armhf architecture (Closes: #604689).
* Remove patches integrated upstream: rpath-editors.diff, rpath-game.diff,
  editors-menu-section.diff.
* Bump the Standard-Version, no changes.
* Update my email address.
* Set build dependency of libclaw to 1.6.0.
* Add the missing ${misc:Depends} in debian/control.
* List gettext translations in bear-factory.install and plee-the-bear.install.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Bear Engine
 
3
 
 
4
  Copyright (C) 2005-2010 Julien Jorge, Sebastien Angibaud
 
5
 
 
6
  This program is free software; you can redistribute it and/or modify it
 
7
  under the terms of the GNU General Public License as published by the
 
8
  Free Software Foundation; either version 2 of the License, or (at your
 
9
  option) any later version.
 
10
 
 
11
  This program is distributed in the hope that it will be useful, but WITHOUT
 
12
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
13
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 
14
  more details.
 
15
 
 
16
  You should have received a copy of the GNU General Public License along
 
17
  with this program; if not, write to the Free Software Foundation, Inc.,
 
18
  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 
 
20
  contact: plee-the-bear@gamned.org
 
21
 
 
22
  Please add the tag [Bear] in the subject of your mails.
 
23
*/
 
24
/**
 
25
 * \file with_expression_creation.hpp
 
26
 * \brief An utility class to determine the item brick to use as the
 
27
 *        creation class for a given expression type.
 
28
 * \author Julien Jorge
 
29
 */
 
30
#ifndef __ENGINE_WITH_EXPRESSION_CREATION_HPP__
 
31
#define __ENGINE_WITH_EXPRESSION_CREATION_HPP__
 
32
 
 
33
#include "engine/item_brick/with_boolean_expression_creation.hpp"
 
34
#include "engine/item_brick/with_linear_expression_creation.hpp"
 
35
 
 
36
#include <claw/meta/conditional.hpp>
 
37
#include <claw/meta/is_base_of.hpp>
 
38
#include <claw/meta/no_type.hpp>
 
39
 
 
40
namespace bear
 
41
{
 
42
  namespace engine
 
43
  {
 
44
    /**
 
45
     * \brief An utility class to determine the item brick to use as the
 
46
     *        creation class for a given expression type.
 
47
     *
 
48
     * \author Julien Jorge
 
49
     */
 
50
    template<typename Expression>
 
51
    class with_expression_creation
 
52
    {
 
53
    public:
 
54
      /** \brief The type of the class to use to instanciate Expression. */
 
55
      typedef typename
 
56
      claw::meta::if_then_else
 
57
      <
 
58
        claw::meta::is_base_of         /* check if it's a boolean expression. */
 
59
        <
 
60
          expr::base_boolean_expression,
 
61
          Expression
 
62
        >::result,
 
63
        with_boolean_expression_creation,
 
64
        typename claw::meta::if_then_else /* maybe a linear expression then? */
 
65
        <
 
66
          claw::meta::is_base_of
 
67
          <
 
68
            expr::base_linear_expression,
 
69
            Expression
 
70
          >::result,
 
71
          with_linear_expression_creation,
 
72
          claw::meta::no_type            /* I can't determine the expression. */
 
73
        >::result
 
74
      >::result creation_class_type;
 
75
    }; // class with_expression_creation
 
76
 
 
77
  } // namespace engine
 
78
} // namespace bear
 
79
 
 
80
#endif // __ENGINE_WITH_EXPRESSION_CREATION_HPP__