Tue, 21 Sep 2021 16:00:15 +0300
Begin work with serialization
| 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 | ||
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
19 | #include <QBrush> |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
20 | #include <QFont> |
| 3 | 21 | #include "model.h" |
| 22 | #include "modeleditcontext.h" | |
| 23 | ||
| 21 | 24 | Model::Model(QObject* parent) : |
|
86
4bec0525ef1b
PolygonObjectEditor can now modify the object properly
Teemu Piippo <teemu@hecknology.net>
parents:
76
diff
changeset
|
25 | QAbstractListModel{parent} |
|
4bec0525ef1b
PolygonObjectEditor can now modify the object properly
Teemu Piippo <teemu@hecknology.net>
parents:
76
diff
changeset
|
26 | { |
|
4bec0525ef1b
PolygonObjectEditor can now modify the object properly
Teemu Piippo <teemu@hecknology.net>
parents:
76
diff
changeset
|
27 | connect(this, &Model::dataChanged, [&](){ this->needRecache = true; }); |
|
4bec0525ef1b
PolygonObjectEditor can now modify the object properly
Teemu Piippo <teemu@hecknology.net>
parents:
76
diff
changeset
|
28 | } |
| 3 | 29 | |
| 30 | int Model::size() const | |
| 31 | { | |
| 51 | 32 | return static_cast<int>(this->body.size()); |
| 3 | 33 | } |
| 34 | ||
| 35 | Model::EditContext Model::edit() | |
| 36 | { | |
| 37 | return {*this}; | |
| 38 | } | |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
39 | |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
40 | int Model::rowCount(const QModelIndex&) const |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
41 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
42 | return size(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
43 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
44 | |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
45 | QVariant Model::data(const QModelIndex& index, int role) const |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
46 | { |
| 51 | 47 | const ldraw::Object* object = this->objectAt(index); |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
48 | switch(role) |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
49 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
50 | case Qt::DisplayRole: |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
51 | return object->textRepresentation(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
52 | case Qt::ForegroundRole: |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
53 | return object->textRepresentationForeground(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
54 | case Qt::BackgroundRole: |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
55 | return object->textRepresentationBackground(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
56 | case Qt::FontRole: |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
57 | return object->textRepresentationFont(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
58 | default: |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
59 | return {}; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
60 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
61 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
62 | |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
63 | QVariant Model::getHeaderProperty(const HeaderProperty property) |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
64 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
65 | switch (property) |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
66 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
67 | case HeaderProperty::Name: |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
68 | return header.name; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
69 | } |
| 51 | 70 | return {}; |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
71 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
72 | |
|
35
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
24
diff
changeset
|
73 | QVariant Model::getObjectProperty(const int index, const ldraw::Property property) const |
| 12 | 74 | { |
| 51 | 75 | const ldraw::Object* object = this->body[unsigned_cast(index)].get(); |
| 12 | 76 | return object->getProperty(property); |
| 77 | } | |
| 78 | ||
| 21 | 79 | std::vector<gl::Polygon> Model::getPolygons(DocumentManager* documents) const |
| 80 | { | |
| 81 | if (this->needRecache) | |
| 82 | { | |
| 83 | this->cachedPolygons.clear(); | |
|
35
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
24
diff
changeset
|
84 | ldraw::GetPolygonsContext context{documents}; |
| 21 | 85 | for (int i = 0; i < this->size(); i += 1) |
| 86 | { | |
| 87 | this->getObjectPolygons(i, this->cachedPolygons, &context); | |
| 88 | } | |
| 89 | this->needRecache = false; | |
| 90 | } | |
| 91 | return this->cachedPolygons; | |
| 92 | } | |
| 93 | ||
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
51
diff
changeset
|
94 | QModelIndex Model::lookup(ldraw::id_t id) const |
| 51 | 95 | { |
| 96 | // FIXME: This linear search will probably cause performance issues | |
| 97 | for (std::size_t i = 0; i < this->body.size(); i += 1) | |
| 98 | { | |
| 99 | if (this->body[i]->id == id) | |
| 100 | { | |
| 101 | return this->index(static_cast<int>(i)); | |
| 102 | } | |
| 103 | } | |
| 104 | return {}; | |
| 105 | } | |
| 106 | ||
|
73
97df974b5ed5
ldraw::Id is now templated for extra type safety
Teemu Piippo <teemu@hecknology.net>
parents:
51
diff
changeset
|
107 | ldraw::id_t Model::resolve(const QModelIndex& index) const |
| 51 | 108 | { |
| 109 | return this->objectAt(index)->id; | |
| 110 | } | |
| 111 | ||
| 21 | 112 | void Model::getObjectPolygons( |
| 113 | const int index, | |
| 114 | std::vector<gl::Polygon>& polygons_out, | |
|
35
98906a94732f
renamed the linetypes namespace to ldraw namespace and added more structures to it
Teemu Piippo <teemu@hecknology.net>
parents:
24
diff
changeset
|
115 | ldraw::GetPolygonsContext* context) const |
| 21 | 116 | { |
| 51 | 117 | const ldraw::Object* object = this->body[unsigned_cast(index)].get(); |
| 21 | 118 | object->getPolygons(polygons_out, context); |
| 119 | } | |
| 120 | ||
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
121 | void Model::append(ModelObjectPointer&& object) |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
122 | { |
|
76
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
123 | const int position = static_cast<int>(this->body.size()); |
| 112 | 124 | Q_EMIT beginInsertRows({}, position, position); |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
125 | this->body.push_back(std::move(object)); |
| 112 | 126 | Q_EMIT endInsertRows(); |
|
111
1f42c03fafca
Draw tool actually adds objects now
Teemu Piippo <teemu@hecknology.net>
parents:
86
diff
changeset
|
127 | this->needRecache = true; |
|
76
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
128 | } |
|
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
129 | |
|
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
130 | void Model::remove(int position) |
|
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
131 | { |
|
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
132 | if (position >= 0 and position < signed_cast(this->body.size())) |
|
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
133 | { |
| 112 | 134 | Q_EMIT beginRemoveRows({}, position, position); |
|
76
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
135 | this->body.erase(std::begin(this->body) + position); |
| 112 | 136 | Q_EMIT endRemoveRows(); |
|
111
1f42c03fafca
Draw tool actually adds objects now
Teemu Piippo <teemu@hecknology.net>
parents:
86
diff
changeset
|
137 | this->needRecache = true; |
|
76
7c4a63a02632
finished splitQuadrilateral theoretically (untested)
Teemu Piippo <teemu@hecknology.net>
parents:
73
diff
changeset
|
138 | } |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
3
diff
changeset
|
139 | } |
| 51 | 140 | |
| 141 | ldraw::Object* Model::objectAt(const QModelIndex& index) | |
| 142 | { | |
| 143 | return this->body[unsigned_cast(index.row())].get(); | |
| 144 | } | |
| 145 | ||
| 146 | const ldraw::Object* Model::objectAt(const QModelIndex& index) const | |
| 147 | { | |
| 148 | return this->body[unsigned_cast(index.row())].get(); | |
| 149 | } |