Wires now move when the component is dragged
This commit is contained in:
parent
78da43f51d
commit
6ca89f0995
|
@ -6,17 +6,27 @@ namespace Ui {
|
||||||
class Component;
|
class Component;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
QLine* line;
|
||||||
|
enum class eType {
|
||||||
|
SOURCE,
|
||||||
|
TARGET
|
||||||
|
} type;
|
||||||
|
} Wire;
|
||||||
|
|
||||||
class Component : public QFrame
|
class Component : public QFrame
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
explicit Component(QWidget* parent);
|
explicit Component(QWidget* parent);
|
||||||
explicit Component(QWidget* parent, const QString& resource);
|
explicit Component(QWidget* parent, const QString& resource);
|
||||||
|
~Component();
|
||||||
|
|
||||||
virtual void mouseMoveEvent(QMouseEvent* event) override;
|
virtual void mouseMoveEvent(QMouseEvent* event) override;
|
||||||
|
|
||||||
QPoint CenterPos();
|
QPoint CenterPos();
|
||||||
void Connect(Component* component);
|
void Connect(Component* component, QLine* wire);
|
||||||
const QString& Type();
|
const QString& Type();
|
||||||
|
void UpdateWires();
|
||||||
|
|
||||||
virtual bool Action() = 0;
|
virtual bool Action() = 0;
|
||||||
|
|
||||||
|
@ -26,4 +36,5 @@ protected:
|
||||||
|
|
||||||
QString type;
|
QString type;
|
||||||
std::vector<Component*> connections;
|
std::vector<Component*> connections;
|
||||||
|
std::vector<Wire*> wires;
|
||||||
};
|
};
|
|
@ -50,5 +50,5 @@ private:
|
||||||
} componentType;
|
} componentType;
|
||||||
|
|
||||||
std::vector<Component*> components;
|
std::vector<Component*> components;
|
||||||
std::vector<QLine> wires;
|
std::vector<QLine*> wires;
|
||||||
};
|
};
|
|
@ -19,6 +19,15 @@ Component::Component(QWidget* parent, const QString& resource) :
|
||||||
ui->label->setPixmap(QPixmap(resource));
|
ui->label->setPixmap(QPixmap(resource));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Component::~Component()
|
||||||
|
{
|
||||||
|
for (Wire* w : wires)
|
||||||
|
{
|
||||||
|
delete w;
|
||||||
|
w = nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void Component::mouseMoveEvent(QMouseEvent* event)
|
void Component::mouseMoveEvent(QMouseEvent* event)
|
||||||
{
|
{
|
||||||
event->ignore();
|
event->ignore();
|
||||||
|
@ -29,12 +38,29 @@ QPoint Component::CenterPos()
|
||||||
return pos() + QPoint(size().width() / 2, size().height() / 2);
|
return pos() + QPoint(size().width() / 2, size().height() / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Component::Connect(Component* component)
|
void Component::Connect(Component* component, QLine* wire)
|
||||||
{
|
{
|
||||||
connections.push_back(component);
|
connections.push_back(component);
|
||||||
|
this->wires.push_back(new Wire{ wire, Wire::eType::TARGET});
|
||||||
|
component->wires.push_back(new Wire{ wire, Wire::eType::SOURCE});
|
||||||
}
|
}
|
||||||
|
|
||||||
const QString& Component::Type()
|
const QString& Component::Type()
|
||||||
{
|
{
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Component::UpdateWires()
|
||||||
|
{
|
||||||
|
for (Wire* wire : wires)
|
||||||
|
{
|
||||||
|
if (wire->type == Wire::eType::SOURCE)
|
||||||
|
{
|
||||||
|
wire->line->setP1(this->CenterPos());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
wire->line->setP2(this->CenterPos());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -76,6 +76,12 @@ Window::~Window()
|
||||||
delete c;
|
delete c;
|
||||||
c = nullptr;
|
c = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (QLine* line : wires)
|
||||||
|
{
|
||||||
|
delete line;
|
||||||
|
line = nullptr;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Window::mousePressEvent(QMouseEvent* event)
|
void Window::mousePressEvent(QMouseEvent* event)
|
||||||
|
@ -101,7 +107,7 @@ void Window::mousePressEvent(QMouseEvent* event)
|
||||||
|
|
||||||
QPoint mousePos = ui->centralwidget->mapFromParent(event->pos());
|
QPoint mousePos = ui->centralwidget->mapFromParent(event->pos());
|
||||||
mousePos.setY(mousePos.y() + ui->toolBar->height());
|
mousePos.setY(mousePos.y() + ui->toolBar->height());
|
||||||
wires.push_back(QLine(child->CenterPos(), mousePos));
|
wires.push_back(new QLine(child->CenterPos(), mousePos));
|
||||||
// std::cout << "(" << child->x() << ", " << child->y() << ") --> (" << mousePos.x() << ", " << mousePos.y() << ")" << std::endl;
|
// std::cout << "(" << child->x() << ", " << child->y() << ") --> (" << mousePos.x() << ", " << mousePos.y() << ")" << std::endl;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -121,7 +127,7 @@ void Window::mouseMoveEvent(QMouseEvent* event)
|
||||||
if (dragInfo.component != nullptr)
|
if (dragInfo.component != nullptr)
|
||||||
{
|
{
|
||||||
dragInfo.component->move(event->pos() - dragInfo.relativePos);
|
dragInfo.component->move(event->pos() - dragInfo.relativePos);
|
||||||
// Move wires too lol
|
dragInfo.component->UpdateWires();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ghostImage != nullptr)
|
if (ghostImage != nullptr)
|
||||||
|
@ -131,7 +137,7 @@ void Window::mouseMoveEvent(QMouseEvent* event)
|
||||||
{
|
{
|
||||||
QPoint mousePos = ui->centralwidget->mapFromParent(event->pos());
|
QPoint mousePos = ui->centralwidget->mapFromParent(event->pos());
|
||||||
mousePos.setY(mousePos.y() + ui->toolBar->height());
|
mousePos.setY(mousePos.y() + ui->toolBar->height());
|
||||||
wires.back().setP2(mousePos);
|
wires.back()->setP2(mousePos);
|
||||||
}
|
}
|
||||||
|
|
||||||
event->accept();
|
event->accept();
|
||||||
|
@ -144,7 +150,7 @@ void Window::mouseReleaseEvent(QMouseEvent* event)
|
||||||
|
|
||||||
if (componentGroup->checkedAction() == ui->actionWiring)
|
if (componentGroup->checkedAction() == ui->actionWiring)
|
||||||
{
|
{
|
||||||
Component* connectFrom = componentAt(wires.back().p1());
|
Component* connectFrom = componentAt(wires.back()->p1());
|
||||||
Component* connectTo = componentAt(event->pos());
|
Component* connectTo = componentAt(event->pos());
|
||||||
if (connectTo == nullptr || connectTo == connectFrom)
|
if (connectTo == nullptr || connectTo == connectFrom)
|
||||||
{
|
{
|
||||||
|
@ -152,8 +158,8 @@ void Window::mouseReleaseEvent(QMouseEvent* event)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wires.back().setP2(connectTo->CenterPos());
|
wires.back()->setP2(connectTo->CenterPos());
|
||||||
connectTo->Connect(connectFrom);
|
connectTo->Connect(connectFrom, wires.back());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(componentGroup->checkedAction() == ui->actionCursor)
|
else if(componentGroup->checkedAction() == ui->actionCursor)
|
||||||
|
@ -172,8 +178,8 @@ void Window::paintEvent(QPaintEvent* event)
|
||||||
QPainter painter(this);
|
QPainter painter(this);
|
||||||
painter.setPen(pen);
|
painter.setPen(pen);
|
||||||
|
|
||||||
for(QLine line : wires)
|
for(QLine* line : wires)
|
||||||
painter.drawLine(line);
|
painter.drawLine(*line);
|
||||||
|
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue