Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FN_multi_function_data_type.hh « functions « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23a1c0e5680b6a3fa07d3f9166fc6fb2b546c52e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

#ifndef __FN_MULTI_FUNCTION_DATA_TYPE_HH__
#define __FN_MULTI_FUNCTION_DATA_TYPE_HH__

/** \file
 * \ingroup fn
 *
 * A MFDataType describes what type of data a multi-function gets as input, outputs or mutates.
 * Currently, only individual elements or vectors of elements are supported. Adding more data types
 * is possible when necessary.
 */

#include "FN_cpp_type.hh"

namespace blender::fn {

class MFDataType {
 public:
  enum Category {
    Single,
    Vector,
  };

 private:
  Category category_;
  const CPPType *type_;

  MFDataType(Category category, const CPPType &type) : category_(category), type_(&type)
  {
  }

 public:
  MFDataType() = default;

  static MFDataType ForSingle(const CPPType &type)
  {
    return MFDataType(Single, type);
  }

  static MFDataType ForVector(const CPPType &type)
  {
    return MFDataType(Vector, type);
  }

  template<typename T> static MFDataType ForSingle()
  {
    return MFDataType::ForSingle(CPPType::get<T>());
  }

  template<typename T> static MFDataType ForVector()
  {
    return MFDataType::ForVector(CPPType::get<T>());
  }

  bool is_single() const
  {
    return category_ == Single;
  }

  bool is_vector() const
  {
    return category_ == Vector;
  }

  Category category() const
  {
    return category_;
  }

  const CPPType &single_type() const
  {
    BLI_assert(this->is_single());
    return *type_;
  }

  const CPPType &vector_base_type() const
  {
    BLI_assert(this->is_vector());
    return *type_;
  }

  friend bool operator==(const MFDataType &a, const MFDataType &b);
  friend bool operator!=(const MFDataType &a, const MFDataType &b);

  std::string to_string() const
  {
    switch (category_) {
      case Single:
        return type_->name();
      case Vector:
        return type_->name() + " Vector";
    }
    BLI_assert(false);
    return "";
  }

  uint64_t hash() const
  {
    return DefaultHash<CPPType>{}(*type_) + (uint64_t)category_;
  }
};

inline bool operator==(const MFDataType &a, const MFDataType &b)
{
  return a.category_ == b.category_ && a.type_ == b.type_;
}

inline bool operator!=(const MFDataType &a, const MFDataType &b)
{
  return !(a == b);
}

}  // namespace blender::fn

#endif /* __FN_MULTI_FUNCTION_DATA_TYPE_HH__ */