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

FN_multi_function_param_type.h « functions « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 863430e3bcc8bdbc6a0e9ddf514478201465765a (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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#ifndef __FN_MULTI_FUNCTION_PARAM_TYPE_H__
#define __FN_MULTI_FUNCTION_PARAM_TYPE_H__

#include "FN_multi_function_data_type.h"

namespace FN {

struct MFParamType {
 public:
  enum InterfaceType {
    Input,
    Output,
    Mutable,
  };

  enum Type {
    SingleInput,
    VectorInput,
    SingleOutput,
    VectorOutput,
    MutableSingle,
    MutableVector,
  };

  MFParamType(InterfaceType interface_type, MFDataType data_type)
      : m_interface_type(interface_type), m_data_type(data_type)
  {
  }

  static MFParamType ForSingleInput(const CPPType &type)
  {
    return MFParamType(InterfaceType::Input, MFDataType::ForSingle(type));
  }

  static MFParamType ForVectorInput(const CPPType &base_type)
  {
    return MFParamType(InterfaceType::Input, MFDataType::ForVector(base_type));
  }

  static MFParamType ForSingleOutput(const CPPType &type)
  {
    return MFParamType(InterfaceType::Output, MFDataType::ForSingle(type));
  }

  static MFParamType ForVectorOutput(const CPPType &base_type)
  {
    return MFParamType(InterfaceType::Output, MFDataType::ForVector(base_type));
  }

  static MFParamType ForSingleMutable(const CPPType &type)
  {
    return MFParamType(InterfaceType::Mutable, MFDataType::ForSingle(type));
  }

  static MFParamType ForVectorMutable(const CPPType &base_type)
  {
    return MFParamType(InterfaceType::Mutable, MFDataType::ForVector(base_type));
  }

  bool is_input() const
  {
    return m_interface_type == Input;
  }

  bool is_output() const
  {
    return m_interface_type == Output;
  }

  bool is_mutable() const
  {
    return m_interface_type == Mutable;
  }

  bool is_single_input() const
  {
    return m_interface_type == Input && m_data_type.is_single();
  }

  bool is_vector_input() const
  {
    return m_interface_type == Input && m_data_type.is_vector();
  }

  bool is_mutable_single() const
  {
    return m_interface_type == Mutable && m_data_type.is_single();
  }

  bool is_mutable_vector() const
  {
    return m_interface_type == Mutable && m_data_type.is_vector();
  }

  bool is_single_output() const
  {
    return m_interface_type == Output && m_data_type.is_single();
  }

  bool is_input_or_mutable() const
  {
    return ELEM(m_interface_type, Input, Mutable);
  }

  bool is_output_or_mutable() const
  {
    return ELEM(m_interface_type, Output, Mutable);
  }

  bool is_vector_output() const
  {
    return m_interface_type == Output && m_data_type.is_vector();
  }

  Type type() const
  {
    if (m_data_type.is_single()) {
      switch (m_interface_type) {
        case InterfaceType::Input:
          return SingleInput;
        case InterfaceType::Output:
          return SingleOutput;
        case InterfaceType::Mutable:
          return MutableSingle;
      }
    }
    else if (m_data_type.is_vector()) {
      switch (m_interface_type) {
        case InterfaceType::Input:
          return VectorInput;
        case InterfaceType::Output:
          return VectorOutput;
        case InterfaceType::Mutable:
          return MutableVector;
      }
    }
    BLI_assert(false);
    return Type::MutableSingle;
  }

  MFDataType data_type() const
  {
    return m_data_type;
  }

  InterfaceType interface_type() const
  {
    return m_interface_type;
  }

  friend bool operator==(MFParamType a, MFParamType b)
  {
    return a.m_interface_type == b.m_interface_type && a.m_data_type == b.m_data_type;
  }

 private:
  InterfaceType m_interface_type;
  MFDataType m_data_type;
};

}  // namespace FN

#endif /* __FN_MULTI_FUNCTION_PARAM_TYPE_H__ */