Wed, 25 May 2022 12:01:58 +0300
cleanup, gl::Compiler changed to gl::ModelShaders
| 24 | 1 | /* |
| 2 | * LDForge: LDraw parts authoring CAD | |
| 3 | * Copyright (C) 2013 - 2020 Teemu Piippo | |
| 4 | * | |
| 5 | * This program is free software: you can redistribute it and/or modify | |
| 6 | * it under the terms of the GNU General Public License as published by | |
| 7 | * the Free Software Foundation, either version 3 of the License, or | |
| 8 | * (at your option) any later version. | |
| 9 | * | |
| 10 | * This program is distributed in the hope that it will be useful, | |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 | * GNU General Public License for more details. | |
| 14 | * | |
| 15 | * You should have received a copy of the GNU General Public License | |
| 16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
| 17 | */ | |
| 18 | ||
| 0 | 19 | #pragma once |
| 2 | 20 | #include <QString> |
| 21 | #include <QVector> | |
| 22 | #include <QSet> | |
| 96 | 23 | #include <QDebug> |
|
188
64ea7282611e
more work on circle tool + cleanup
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
24 | #include <compare> |
|
7
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
25 | #include <memory> |
| 3 | 26 | #include "basics.h" |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
7
diff
changeset
|
27 | #include "utility.h" |
| 20 | 28 | #include "maths.h" |
| 55 | 29 | #include "geometry.h" |
|
63
f7dd937667a5
omg functional programming
Teemu Piippo <teemu@hecknology.net>
parents:
55
diff
changeset
|
30 | #include "functional.h" |
| 2 | 31 | |
|
7
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
32 | namespace settingGroups |
|
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
33 | { |
|
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
34 | // List of setting groups |
|
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
35 | constexpr char mainwindow[] = "mainwindow"; |
|
68443f5be176
added the settings editor
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
36 | } |
| 21 | 37 | |
|
35
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
26
diff
changeset
|
38 | namespace ldraw |
| 21 | 39 | { |
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
40 | class Object; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
41 | |
| 21 | 42 | // Uniquely identifies a model body object |
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
43 | template<typename T> |
| 21 | 44 | struct Id |
| 45 | { | |
| 46 | 46 | std::int32_t value; |
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
47 | template<typename A, typename B> |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
48 | static constexpr bool is_base_or_base_of = std::disjunction_v<std::is_base_of<A, B>, std::is_base_of<B, A>>; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
49 | template<typename R, typename = std::enable_if_t<is_base_or_base_of<T, R>>> |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
50 | constexpr bool operator<(ldraw::Id<R> other) const |
| 26 | 51 | { |
| 52 | return this->value < other.value; | |
| 53 | } | |
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
54 | friend constexpr unsigned int qHash(ldraw::Id<T> id) |
| 51 | 55 | { |
| 56 | return qHash(id.value); | |
| 57 | } | |
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
58 | // Allow comparing ids as long as they are related |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
59 | template<typename R, typename = std::enable_if_t<is_base_or_base_of<T, R>>> |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
60 | friend bool operator==(ldraw::Id<T> one, ldraw::Id<R> other) |
| 51 | 61 | { |
| 62 | return one.value == other.value; | |
| 63 | } | |
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
64 | // Allow upcasting |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
65 | template<typename R, typename = std::enable_if_t<std::is_base_of_v<R, T>>> |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
66 | constexpr operator Id<R>() const |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
67 | { |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
68 | return Id<R>{this->value}; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
69 | } |
| 21 | 70 | }; |
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
71 | |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
72 | using id_t = Id<Object>; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
73 | using triangleid_t = Id<class Triangle>; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
74 | using quadrilateralid_t = Id<class Quadrilateral>; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
75 | using edgeid_t = Id<class EdgeLine>; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
76 | using conditionaledgeid_t = Id<class ConditionalEdge>; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
77 | using subfileid_t = Id<class SubfileReference>; |
| 141 | 78 | using commentid_t = Id<class Comment>; |
| 79 | using metacommandid_t = Id<class MetaCommand>; | |
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
80 | |
|
81
62373840e33a
object editor widgets start to form up
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
81 | constexpr struct NullId |
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
82 | { |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
83 | template<typename T> |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
84 | constexpr operator Id<T>() const |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
85 | { |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
86 | return Id<T>{0}; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
87 | } |
|
81
62373840e33a
object editor widgets start to form up
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
88 | static constexpr decltype(ldraw::id_t::value) value = 0; |
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
89 | } NULL_ID = {}; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
90 | |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
91 | template<typename T> |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
92 | inline bool operator==(Id<T> one, decltype(NULL_ID)) |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
93 | { |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
94 | return one.value == 0; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
95 | } |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
96 | |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
97 | template<typename T> |
|
107
02f142b399b1
Move selection logic into select tool
Teemu Piippo <teemu@hecknology.net>
parents:
101
diff
changeset
|
98 | inline bool operator!=(Id<T> one, decltype(NULL_ID)) |
|
02f142b399b1
Move selection logic into select tool
Teemu Piippo <teemu@hecknology.net>
parents:
101
diff
changeset
|
99 | { |
|
02f142b399b1
Move selection logic into select tool
Teemu Piippo <teemu@hecknology.net>
parents:
101
diff
changeset
|
100 | return one.value != 0; |
|
02f142b399b1
Move selection logic into select tool
Teemu Piippo <teemu@hecknology.net>
parents:
101
diff
changeset
|
101 | } |
|
02f142b399b1
Move selection logic into select tool
Teemu Piippo <teemu@hecknology.net>
parents:
101
diff
changeset
|
102 | |
|
02f142b399b1
Move selection logic into select tool
Teemu Piippo <teemu@hecknology.net>
parents:
101
diff
changeset
|
103 | template<typename T> |
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
104 | inline bool operator<(Id<T> one, decltype(NULL_ID)) |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
105 | { |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
106 | return one.value < 0; |
|
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
64
diff
changeset
|
107 | } |
| 21 | 108 | } |
|
22
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
109 | |
|
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
110 | constexpr std::size_t operator""_z(const unsigned long long int x) |
|
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
111 | { |
|
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
112 | return static_cast<std::size_t>(x); |
|
6da867fa5429
commit work on GL rendering
Teemu Piippo <teemu@hecknology.net>
parents:
21
diff
changeset
|
113 | } |
| 26 | 114 | |
| 115 | inline QString operator""_q(const char* string, const unsigned long int length) | |
| 116 | { | |
| 117 | Q_UNUSED(length) | |
| 118 | return QString{string}; | |
| 119 | } | |
| 120 | ||
| 121 | inline QPointF pointToPointF(const QPoint& point) | |
| 122 | { | |
| 123 | return {static_cast<qreal>(point.x()), static_cast<qreal>(point.y())}; | |
| 124 | } | |
| 125 | ||
| 126 | inline QPoint pointFToPoint(const QPointF& point) | |
| 127 | { | |
| 128 | return {static_cast<int>(std::round(point.x())), static_cast<int>(std::round(point.y()))}; | |
| 129 | } | |
| 130 | ||
| 113 | 131 | inline QSizeF sizeToSizeF(const QSize& size) |
| 132 | { | |
| 133 | return {static_cast<qreal>(size.width()), static_cast<qreal>(size.height())}; | |
| 134 | } | |
| 135 | ||
| 26 | 136 | /** |
| 137 | * \brief Hints to the specified vector that a certain amount of new elements are going to be added. | |
| 138 | * \param vector vector to consider | |
| 139 | * \param amount amount of new elements to expect | |
| 140 | */ | |
| 141 | template<typename T> | |
| 142 | void reserveMore(std::vector<T>& vector, std::size_t amount) | |
| 143 | { | |
| 144 | vector.reserve(vector.size() + amount); | |
| 145 | } | |
|
64
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
146 | |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
147 | inline QString vectorToString(const glm::vec2& vec) |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
148 | { |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
149 | return "(%1, %2)"_q |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
150 | .arg(toDouble(vec.x)) |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
151 | .arg(toDouble(vec.y)); |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
152 | } |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
153 | |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
154 | inline QString vectorToString(const glm::vec3& vec) |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
155 | { |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
156 | return "(%1, %2, %3)"_q |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
157 | .arg(toDouble(vec.x)) |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
158 | .arg(toDouble(vec.y)) |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
159 | .arg(toDouble(vec.z)); |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
160 | } |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
161 | |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
162 | inline QString vectorToString(const glm::vec4& vec) |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
163 | { |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
164 | return "(%1, %2, %3, %4)"_q |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
165 | .arg(toDouble(vec.x)) |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
166 | .arg(toDouble(vec.y)) |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
167 | .arg(toDouble(vec.z)) |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
168 | .arg(toDouble(vec.w)); |
|
f99d52b1646b
grid snapping now also works with transformed grids
Teemu Piippo <teemu@hecknology.net>
parents:
63
diff
changeset
|
169 | } |
| 97 | 170 | |
| 171 | template<typename K, typename V> | |
| 172 | struct KeyValuePair | |
| 173 | { | |
| 174 | K key; | |
| 175 | V value; | |
| 176 | }; | |
| 177 | ||
| 178 | template<typename K, typename V, typename IteratorType> | |
| 179 | struct MapItemsIterator : IteratorType | |
| 180 | { | |
| 181 | template<typename... Ts> | |
| 182 | MapItemsIterator(Ts&&... args) : IteratorType{args...} {} | |
| 183 | auto operator*() const | |
| 184 | { | |
|
101
910890292639
added references to items()
Teemu Piippo <teemu@hecknology.net>
parents:
97
diff
changeset
|
185 | return KeyValuePair<const K&, V&>{this->key(), this->value()}; |
| 97 | 186 | } |
| 187 | }; | |
| 188 | ||
| 189 | template<typename K, typename V, typename MapType, typename IteratorType> | |
| 190 | struct MapItems | |
| 191 | { | |
| 192 | MapType& map; | |
| 193 | IteratorType begin() | |
| 194 | { | |
| 195 | return IteratorType(this->map.begin()); | |
| 196 | } | |
| 197 | ||
| 198 | IteratorType end() | |
| 199 | { | |
| 200 | return IteratorType(this->map.end()); | |
| 201 | } | |
| 202 | }; | |
| 203 | ||
| 204 | /* | |
| 205 | * Python's dict.items for QMap: use in a for loop to iterate a map to | |
| 206 | * get both keys and values. Iteration yields KeyValuePairs. | |
| 207 | */ | |
| 208 | template<typename K, typename V> | |
| 209 | auto items(const QMap<K, V>& map) | |
| 210 | { | |
| 211 | return MapItems< | |
| 212 | const K&, | |
| 213 | const V&, | |
| 214 | const QMap<K, V>, | |
| 215 | MapItemsIterator<K, const V, typename QMap<K, V>::const_iterator> | |
| 216 | >{map}; | |
| 217 | } | |
| 218 | ||
| 219 | template<typename K, typename V> | |
| 220 | auto items(QMap<K, V>& map) | |
| 221 | { | |
| 222 | return MapItems< | |
| 223 | const K&, | |
| 224 | V&, | |
| 225 | QMap<K, V>, | |
| 226 | MapItemsIterator<K, const V, typename QMap<K, V>::iterator> | |
| 227 | >{map}; | |
| 228 | } | |
|
132
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
229 | |
| 148 | 230 | template<typename T, typename IdentifierType> |
| 231 | struct TypeValue | |
| 232 | { | |
| 233 | T value; | |
| 234 | bool operator==(TypeValue<T, IdentifierType> other) const | |
| 235 | { | |
| 236 | return value == other.value; | |
| 237 | } | |
| 238 | bool operator!=(TypeValue<T, IdentifierType> other) const | |
| 239 | { | |
| 240 | return value != other.value; | |
| 241 | } | |
| 242 | bool operator<(TypeValue<T, IdentifierType> other) const | |
| 243 | { | |
| 244 | return value < other.value; | |
| 245 | } | |
| 246 | bool operator>(TypeValue<T, IdentifierType> other) const | |
| 247 | { | |
| 248 | return value > other.value; | |
| 249 | } | |
| 250 | bool operator<=(TypeValue<T, IdentifierType> other) const | |
| 251 | { | |
| 252 | return value <= other.value; | |
| 253 | } | |
| 254 | bool operator>=(TypeValue<T, IdentifierType> other) const | |
| 255 | { | |
| 256 | return value >= other.value; | |
| 257 | } | |
| 258 | }; | |
| 259 | ||
| 260 | template<typename T, typename R> | |
| 261 | int qHash(TypeValue<T, R> value) | |
| 262 | { | |
| 263 | return qHash(value.value); | |
| 264 | } | |
| 265 | ||
| 266 | using ModelId = TypeValue<int, struct TypeValueModelId>; | |
| 267 | ||
|
132
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
268 | /** |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
269 | * Iterates a @c glm::mat |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
270 | */ |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
271 | template<int X, int Y, typename T, glm::qualifier Q, typename Fn> |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
272 | void iter_matrix(const glm::mat<X, Y, T, Q>& matrix, Fn&& fn) |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
273 | { |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
274 | for (int i = 0; i < X; ++i) |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
275 | { |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
276 | for (int j = 0; j < Y; ++j) |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
277 | { |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
278 | fn(i, j, matrix[i][j]); |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
279 | } |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
280 | } |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
281 | } |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
282 | |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
283 | QDataStream& operator<<(QDataStream&, const glm::vec3&); |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
284 | QDataStream& operator>>(QDataStream&, glm::vec3&); |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
285 | |
|
134
f77d2230e87c
Add remaining serialize methods
Teemu Piippo <teemu@hecknology.net>
parents:
132
diff
changeset
|
286 | template<int X, int Y, typename T, glm::qualifier Q> |
|
132
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
287 | QDataStream& operator<<(QDataStream& stream, const glm::mat<X, Y, T, Q>& mat) |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
288 | { |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
289 | iter_matrix(mat, [&stream](int, int, float x) |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
290 | { |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
291 | stream << x; |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
292 | }); |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
293 | return stream; |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
294 | } |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
295 | |
|
134
f77d2230e87c
Add remaining serialize methods
Teemu Piippo <teemu@hecknology.net>
parents:
132
diff
changeset
|
296 | template<int X, int Y, typename T, glm::qualifier Q> |
|
132
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
297 | QDataStream& operator>>(QDataStream& stream, glm::mat<X, Y, T, Q>& mat) |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
298 | { |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
299 | iter_matrix(mat, [&stream](int, int, float x) |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
300 | { |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
301 | stream >> x; |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
302 | }); |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
303 | return stream; |
|
488d0ba6070b
Begin work with serialization
Teemu Piippo <teemu@hecknology.net>
parents:
113
diff
changeset
|
304 | } |