Wed, 25 May 2022 20:36:34 +0300
Fix pick() picking from weird places on the screen with high DPI scaling
glReadPixels reads data from the frame buffer, which contains data after
high DPI scaling, so any reads to that need to take this scaling into account
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 | ||
3 | 19 | #pragma once |
20 | #include "model.h" | |
21 | ||
152 | 22 | /** |
23 | * @brief Provides an interface for editing a model such that signals are emitted for each edit done. | |
24 | * User edits to models should always be done through this class. | |
25 | */ | |
26 | class ModelEditor : public QObject | |
3 | 27 | { |
152 | 28 | Q_OBJECT |
3 | 29 | public: |
152 | 30 | ModelEditor(Model& model); |
31 | ~ModelEditor(); | |
3 | 32 | template<typename T, typename... Args> |
76
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
33 | ldraw::Id<T> append(Args&&... args); |
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
34 | ldraw::id_t append(std::unique_ptr<ldraw::Object>&& object); |
3 | 35 | template<typename T, typename... Args> |
76
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
36 | ldraw::Id<T> insert(int position, Args&&... args); |
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
37 | void remove(int position); |
86
4bec0525ef1b
PolygonObjectEditor can now modify the object properly
Teemu Piippo <teemu@hecknology.net>
parents:
76
diff
changeset
|
38 | template<ldraw::Property property> |
89 | 39 | void setObjectProperty(ldraw::id_t id, const ldraw::PropertyType<property>& value); |
40 | auto setObjectProperty(ldraw::id_t id, ldraw::Property property, const QVariant& value) | |
41 | -> ldraw::Object::SetPropertyResult; | |
86
4bec0525ef1b
PolygonObjectEditor can now modify the object properly
Teemu Piippo <teemu@hecknology.net>
parents:
76
diff
changeset
|
42 | void setObjectPoint(ldraw::id_t id, int pointId, const glm::vec3& value); |
152 | 43 | template<typename T, typename Fn> |
44 | bool modifyObject(ldraw::Id<T> id, Fn&& function); | |
45 | template<typename T, typename Fn> | |
46 | bool modifyObjectAt(int position, Fn&& function); | |
47 | const Model& model(); | |
48 | Q_SIGNALS: | |
49 | void objectAdded(int position); | |
50 | void objectModified(int position); | |
51 | void objectRemoved(ldraw::id_t id); | |
3 | 52 | private: |
86
4bec0525ef1b
PolygonObjectEditor can now modify the object properly
Teemu Piippo <teemu@hecknology.net>
parents:
76
diff
changeset
|
53 | QSet<ldraw::id_t> modifiedObjects; |
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
54 | Model& storedModel; |
3 | 55 | }; |
56 | ||
89 | 57 | template<ldraw::Property Property> |
152 | 58 | void ModelEditor::setObjectProperty(const ldraw::id_t id, const ldraw::PropertyType<Property>& value) |
89 | 59 | { |
152 | 60 | this->modifyObject(id, [&](ldraw::Object* object){ |
89 | 61 | object->setProperty<Property>(value); |
152 | 62 | }); |
89 | 63 | } |
64 | ||
3 | 65 | template<typename T, typename... Args> |
152 | 66 | ldraw::Id<T> ModelEditor::append(Args&&... args) |
3 | 67 | { |
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
68 | return this->storedModel.append<T>(args...); |
3 | 69 | } |
70 | ||
71 | template<typename T, typename... Args> | |
152 | 72 | ldraw::Id<T> ModelEditor::insert(int position, Args&&... args) |
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
73 | { |
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
74 | return this->storedModel.insert<T>(position, args...); |
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
75 | } |
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
76 | |
152 | 77 | template<typename T, typename Fn> |
78 | bool ModelEditor::modifyObject(ldraw::Id<T> id, Fn&& function) | |
3 | 79 | { |
152 | 80 | QModelIndex index = this->model().find(id); |
81 | return this->modifyObjectAt<T>(index.row(), function); | |
82 | } | |
83 | ||
84 | template<typename T, typename Fn> | |
85 | bool ModelEditor::modifyObjectAt(int position, Fn&& function) | |
86 | { | |
87 | if (position >= 0 and position < this->model().size()) | |
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
35
diff
changeset
|
88 | { |
152 | 89 | T* object = dynamic_cast<T*>(this->storedModel[position]); |
90 | if (object != nullptr) | |
91 | { | |
92 | Q_EMIT this->objectModified(position); | |
93 | function(object); | |
94 | return true; | |
95 | } | |
96 | } | |
97 | return false; | |
98 | } |