File size: 13,666 Bytes
a5ffdcd | 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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | /****************************************************************************
**
** This file is part of the LibreCAD project, a 2D CAD program
**
** Copyright (C) 2010 R. van Twisk (librecad@rvt.dds.nl)
** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
**
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file gpl-2.0.txt included in the
** packaging of this file.
**
** 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
**
** This copyright notice MUST APPEAR in all copies of the script!
**
**********************************************************************/
#ifndef RS_MODIFICATION_H
#define RS_MODIFICATION_H
#include <memory>
#include <QString>
#include "rs_pen.h"
#include "rs_vector.h"
class RS_Arc;
class RS_AtomicEntity;
class RS_Entity;
class RS_EntityContainer;
class RS_MText;
class RS_Text;
class RS_Line;
class RS_Polyline;
class RS_Document;
class RS_Graphic;
class RS_GraphicView;
class LC_GraphicViewport;
struct LC_ModifyOperationFlags{
bool useCurrentAttributes = false;
bool useCurrentLayer = false;
bool keepOriginals = false;
int number = 0;
bool multipleCopies = false;
int obtainNumberOfCopies() const {
int numberOfCopies = number;
if (!multipleCopies){
numberOfCopies = 1;
}
else{
if (numberOfCopies < 1){
numberOfCopies = 1;
}
}
return numberOfCopies;
}
};
/**
* Holds the data needed for move modifications.
*/
struct RS_MoveData : public LC_ModifyOperationFlags{
RS_Vector offset;
};
struct LC_AlignRefData: public LC_ModifyOperationFlags{
bool scale;
RS_Vector rotationCenter;
RS_Vector offset;
double rotationAngle = 0.0;
double scaleFactor = 0.0;
};
struct RS_BoundData{
RS_BoundData(const RS_Vector &left, const RS_Vector &top) {
min = left;
max = top;
}
RS_Vector min;
RS_Vector max;
RS_Vector getCenter(){
return (min+max)/2;
}
};
/**
* Holds the data needed for offset modifications.
*/
struct RS_OffsetData : public LC_ModifyOperationFlags{
RS_Vector coord;
double distance = 0.;
};
/**
* Holds the data needed for rotation modifications.
*/
struct RS_RotateData : public LC_ModifyOperationFlags{
RS_Vector center;
RS_Vector refPoint;
double angle = 0.;
double secondAngle = 0.0;
bool secondAngleIsAbsolute = false;
bool twoRotations = false;
};
/**
* Holds the data needed for scale modifications.
*/
struct RS_ScaleData : public LC_ModifyOperationFlags {
RS_Vector referencePoint;
RS_Vector factor = RS_Vector(1.1,1.0,0.0);
// Find the factor by a source and a target point
bool isotropicScaling = true;
bool toFindFactor = false;
};
/**
* Holds the data needed for mirror modifications.
*/
struct RS_MirrorData : public LC_ModifyOperationFlags{
RS_Vector axisPoint1;
RS_Vector axisPoint2;
};
/**
* Holds the data needed for move/rotate modifications.
*/
struct RS_MoveRotateData : public LC_ModifyOperationFlags{
RS_Vector referencePoint;
RS_Vector offset;
double angle = 0.;
bool sameAngleForCopies = false;
};
/**
* Holds the data needed for rotation around two centers modifications.
*/
struct RS_Rotate2Data : public LC_ModifyOperationFlags{
RS_Vector center1;
RS_Vector center2;
double angle1 = 0.;
double angle2 = 0.;
bool mirrorAngles = false;
bool sameAngle2ForCopies = false;
};
/**
* Holds the data needed for beveling modifications.
*/
struct RS_BevelData{
double length1 = 0.;
double length2 = 0.;
bool trim = false;
};
struct LC_TrimResult{
bool result = false;
RS_Entity* trimmed1 = nullptr;
RS_Entity* trimmed2 = nullptr;
RS_Vector intersection1;
RS_Vector intersection2;
};
struct LC_BevelResult{
RS_Line* bevel = nullptr;
bool polyline = false;
RS_Entity* trimmed1 = nullptr;
RS_Entity* trimmed2 = nullptr;
bool trimStart1 = false;
bool trimStart2 = false;
RS_Vector intersectionPoint = RS_Vector(false);
int error = OK;
enum{
OK,
ERR_NO_INTERSECTION,
ERR_NOT_THE_SAME_POLYLINE
};
};
struct LC_RoundResult{
RS_Arc* round = nullptr;
bool polyline = false;
RS_Entity* trimmed1 = nullptr;
RS_Entity* trimmed2 = nullptr;
int trim1Mode = false;
int trim2Mode = false;
RS_Vector trimmingPoint1 = RS_Vector(false);
RS_Vector trimmingPoint2 = RS_Vector(false);
RS_Vector intersectionPoint = RS_Vector(false);
int error = OK;
enum {
TRIM_START,
TRIM_END,
TRIM_CIRCLE
};
enum{
OK,
ERR_NO_INTERSECTION,
ERR_NOT_THE_SAME_POLYLINE,
NO_PARALLELS
};
};
/**
* Holds the data needed for rounding modifications.
*/
struct RS_RoundData {
double radius = 0.;
bool trim = false;
};
/**
* Holds the data needed for moving reference points.
*/
struct RS_MoveRefData {
RS_Vector ref;
RS_Vector offset;
};
/**
* Holds the data needed for changing attributes.
*/
struct RS_AttributesData {
QString layer;
RS_Pen pen;
bool changeLayer = false;
bool changeColor = false;
bool changeLineType = false;
bool changeWidth = false;
bool applyBlockDeep = false;
};
/**
* Holds the data needed for pasting.
*/
struct RS_PasteData {
RS_PasteData(RS_Vector insertionPoint,
double factor,
double angle,
bool asInsert,
const QString& blockName);
//! Insertion point.
RS_Vector insertionPoint;
//! Scale factor.
double factor = 1.;
//! Rotation angle.
double angle = 0.;
//! Paste as an insert rather than individual entities.
bool asInsert = false;
//! Name of the block to create or an empty string to assign a new auto name.
QString blockName;
};
/**
* API Class for manipulating entities.
* There's no interaction handled in this class.
*
* All modifications can be undone / redone if the container
* is a RS_Graphic.
*
* This class is connected to an entity container and
* can be connected to a graphic view.
*
* @author Andrew Mustun
*/
class RS_Modification {
public:
RS_Modification(
RS_EntityContainer& entityContainer,
LC_GraphicViewport* viewport,
bool handleUndo = true);
void remove();
void remove(const std::vector<RS_Entity*>& entitiesList);
void revertDirection(bool keepSelected);
void revertDirection(const std::vector<RS_Entity*>& entitiesList, bool keepSelected);
bool changeAttributes(RS_AttributesData& data, const bool keepSelected);
bool changeAttributes(RS_AttributesData& data, const std::vector<RS_Entity*>& entitiesList,
RS_EntityContainer* container, bool keepSelected);
bool changeAttributes(RS_AttributesData& data, RS_EntityContainer* container, const bool keepSelected);
void copy(const RS_Vector& ref, const bool cut);
void paste(const RS_PasteData& data, RS_Graphic* source = nullptr);
bool move(RS_MoveData& data, bool previewOnly = false, RS_EntityContainer* previewContainer = nullptr);
bool move(RS_MoveData& data, const std::vector<RS_Entity*>& entitiesList, bool forPreviewOnly, bool keepSelected);
bool rotate(RS_RotateData& data, bool forPreviewOnly = false, bool keepSelected = false);
bool rotate(RS_RotateData& data, const std::vector<RS_Entity*>& entitiesList, bool forPreviewOnly,
bool keepSelected);
bool scale(RS_ScaleData& data, bool forPreviewOnly = false, const bool keepSelected = false);
bool scale(RS_ScaleData& data, const std::vector<RS_Entity*>& entitiesList, bool forPreviewOnly,
const bool keepSelected);
bool mirror(RS_MirrorData& data, bool keepSelected);
bool mirror(RS_MirrorData& data, const std::vector<RS_Entity*>& entitiesList, bool forPreviewOnly,
bool keepSelected);
bool moveRotate(RS_MoveRotateData& data, bool previewOnly = false, RS_EntityContainer* previewContainer = nullptr,
bool keepSelected = false);
bool moveRotate(RS_MoveRotateData& data, const std::vector<RS_Entity*>& entitiesList, bool previewOnly = false,
bool keepSelected = false);
bool rotate2(RS_Rotate2Data& data, bool forPreviewOnly, bool keepSelected);
bool rotate2(RS_Rotate2Data& data, const std::vector<RS_Entity*>& entitiesList, bool forPreviewOnly,
bool keepSelected);
LC_TrimResult trim(
const RS_Vector& trimCoord, RS_AtomicEntity* trimEntity,
const RS_Vector& limitCoord, RS_Entity* limitEntity,
bool both, bool forPreview = false);
RS_Entity* trimAmount(const RS_Vector& trimCoord, RS_AtomicEntity* trimEntity,
double dist, bool trimBoth, bool& trimStart, bool& trimEnd, bool forPreview = false);
bool offset(const RS_OffsetData& data, bool previewOny = false, RS_EntityContainer* previewContainer = nullptr);
bool offset(const RS_OffsetData& data, const std::vector<RS_Entity*>& entitiesList, bool forPreviewOnly,
bool keepSelected);
bool cut(const RS_Vector& cutCoord, RS_AtomicEntity* cutEntity);
bool stretch(
const RS_Vector& firstCorner,
const RS_Vector& secondCorner,
const RS_Vector& offset,
bool removeOriginals);
std::unique_ptr<LC_BevelResult> bevel(
const RS_Vector& coord1, RS_AtomicEntity* entity1,
const RS_Vector& coord2, RS_AtomicEntity* entity2,
RS_BevelData& data, bool previewOnly);
std::unique_ptr<LC_RoundResult> round(
const RS_Vector& coord,
const RS_Vector& coord1,
RS_AtomicEntity* entity1,
const RS_Vector& coord2,
RS_AtomicEntity* entity2,
RS_RoundData& data);
bool explode(const bool remove = true, const bool forceUndoable = false);
bool explode(const std::vector<RS_Entity*>& entitiesList, const bool remove = true,
const bool forceUndoableOperation = false, const bool keepSelected = false);
bool explodeTextIntoLetters(bool keepSelected);
bool explodeTextIntoLetters(const std::vector<RS_Entity*>& entitiesList, bool keepSelected);
bool moveRef(RS_MoveRefData& data);
bool splitPolyline(
RS_Polyline& polyline,
RS_Entity& e1, RS_Vector v1,
RS_Entity& e2, RS_Vector v2,
RS_Polyline** polyline1,
RS_Polyline** polyline2) const;
RS_Polyline* addPolylineNode(
RS_Polyline& polyline,
const RS_AtomicEntity& segment,
const RS_Vector& node);
RS_Polyline* deletePolylineNode(
RS_Polyline& polyline,
const RS_Vector& node, bool createOnly);
RS_Polyline* deletePolylineNodesBetween(
RS_Polyline& polyline,
const RS_Vector& node1, const RS_Vector& node2, bool createOnly);
RS_Polyline* polylineTrim(
RS_Polyline& polyline,
RS_AtomicEntity& segment1,
RS_AtomicEntity& segment2,
bool createOnly);
static RS_BoundData getBoundingRect(std::vector<RS_Entity*>& selected);
// todo - probably it should be located in other utility class..
void collectSelectedEntities(std::vector<RS_Entity*>& entitiesList) const;
bool alignRef(LC_AlignRefData& data, const std::vector<RS_Entity*>& entitiesList, bool forPreviewOnly,
bool keepSelected);
private:
void copyEntity(RS_Entity* e, const RS_Vector& ref, bool cut);
void copyLayers(RS_Entity* e);
void copyBlocks(RS_Entity* e);
bool pasteLayers(RS_Graphic* source);
bool pasteContainer(RS_Entity* entity, RS_EntityContainer* containerToPaste, QHash<QString, QString> blocksDict,
RS_Vector insertionPoint);
bool pasteEntity(RS_Entity* entity, RS_EntityContainer* containerToPaste);
void deselectOriginals(bool remove);
void deselectOriginals(const std::vector<RS_Entity*>& entitiesList, bool remove);
void addNewEntities(const std::vector<RS_Entity*>& addList, bool forceUndoable = false);
bool explodeTextIntoLetters(RS_MText* text, std::vector<RS_Entity*>& addList);
bool explodeTextIntoLetters(RS_Text* text, std::vector<RS_Entity*>& addList);
protected:
RS_EntityContainer* container = nullptr;
RS_Graphic* graphic = nullptr;
RS_Document* document = nullptr;
LC_GraphicViewport* viewport = nullptr;
bool handleUndo = false;
void trimEnding(const RS_Vector& trimCoord, RS_AtomicEntity* trimmed1, const RS_Vector& is) const;
void deleteOriginalAndAddNewEntities(const std::vector<RS_Entity*>& addList,
const std::vector<RS_Entity*>& originalEntities,
bool addOnly, bool deleteOriginals, bool forceUndoable = false);
void setupModifiedClones(std::vector<RS_Entity*>& addList, const LC_ModifyOperationFlags& data,
bool forPreviewOnly, bool keepSelected) const;
RS_Entity* getClone(bool forPreviewOnly, const RS_Entity* e) const;
};
#endif
|