qt/ledset/expertwin.cpp

726 lines
25 KiB
C++
Raw Normal View History

2022-08-25 18:43:03 +08:00
#include "expertwin.h"
2023-03-31 18:44:09 +08:00
#include "gutil/qgui.h"
2022-08-25 18:43:03 +08:00
#include "screenunit.h"
2023-04-18 18:21:34 +08:00
#include "expertboxlayoutwin.h"
2022-08-25 18:43:03 +08:00
#include "expertsmartpointsetwin.h"
2022-08-26 23:15:25 +08:00
#include "expertscreenconnwin.h"
2022-08-25 18:43:03 +08:00
#include <QTabWidget>
#include <QLineEdit>
#include <QPushButton>
#include <QGroupBox>
2022-09-13 23:16:36 +08:00
#include <QStackedWidget>
#include <QRadioButton>
2022-12-16 15:08:53 +08:00
#include <QCheckBox>
#include <QApplication>
#include <QFile>
#include <QJsonDocument>
#include <QJsonArray>
#include <QMessageBox>
#include <QFileDialog>
2023-07-28 14:48:41 +08:00
#include <QSplitter>
2022-08-25 18:43:03 +08:00
QColor colors[] {QColor(0xdd0000), QColor(0xdd6600), QColor(0x008800), QColor(0x008888), QColor(0x0000ff), QColor(0x777777), QColor(0xaaaaaa)};
ExpertWin::ExpertWin(QWidget *parent) : BaseWin{parent} {
setAttribute(Qt::WA_DeleteOnClose);
setWindowTitle("专家调屏");
2023-07-28 14:48:41 +08:00
resize(900, 720);
2022-08-25 18:43:03 +08:00
auto vBox = new QVBoxLayout(center);
vBox->setContentsMargins(0,0,0,0);
vBox->setSpacing(3);
vBox->addLayout(addBtns(new QHBoxLayout()));
auto tab = new QTabWidget;
tab->setStyleSheet(R"rrr(
QTabWidget::pane {border: 1px solid #888; margin-top:-1px;}
QTabBar::tab {margin-top: 4px; padding: 6px 20px; border: 1px solid #888; border-radius: 0 0 3px 3px;}
QTabBar::tab:selected {margin-top: 0; border-bottom: none; color: #acf; background-color: #000;}
)rrr");
vBox->addWidget(tab);
2023-07-28 14:48:41 +08:00
auto splitter = new QSplitter;
tab->addTab(splitter, "发送设备");
2022-08-25 18:43:03 +08:00
{
2023-07-28 14:48:41 +08:00
auto vLeft = new VBox(splitter);
2022-08-25 18:43:03 +08:00
2023-07-28 14:48:41 +08:00
auto hBox = new HBox(vLeft);
2022-08-25 18:43:03 +08:00
hBox->addWidget(new QLabel("分辨率: "));
auto fdW = new QLineEdit(QString::number(screenWidth));
hBox->addWidget(fdW);
hBox->addWidget(new QLabel("X"));
auto fdH = new QLineEdit(QString::number(screenHeight));
hBox->addWidget(fdH);
2023-07-28 14:48:41 +08:00
hBox = new HBox(vLeft);
2022-08-25 18:43:03 +08:00
hBox->addStretch();
auto btnGet = new QPushButton("刷新");
btnGet->setMinimumWidth(80);
hBox->addWidget(btnGet);
hBox->addSpacing(40);
auto btnSet = new QPushButton("设置");
btnSet->setMinimumWidth(80);
hBox->addWidget(btnSet);
hBox->addStretch();
auto table = new Table{
{"face", "网口", 40},
2022-12-16 15:08:53 +08:00
{"x", "X", 0, QHeaderView::Stretch},
{"y", "Y", 0, QHeaderView::Stretch},
{"w", "宽度", 0, QHeaderView::Stretch},
{"h", "高度", 0, QHeaderView::Stretch},
{"audio", "音频开关", 0, QHeaderView::Stretch},
{"backup", "备份开关", 0, QHeaderView::Stretch}
2022-08-25 18:43:03 +08:00
};
table->setDefs();
vLeft->addWidget(table);
table->setRowCount(4);
auto canvas = new ResizeEmitedWgt;
2022-08-25 18:43:03 +08:00
auto screen = new QWidget(canvas);
screen->setGeometry(0, 0, screenWidth, screenHeight);
screen->setAutoFillBackground(true);
auto pal = palette();
pal.setColor(QPalette::Window, QColor(0, 0, 0));
screen->setPalette(pal);
connect(canvas, &ResizeEmitedWgt::resized, this, [this, canvas, screen] {
2022-08-25 18:43:03 +08:00
rate = qMin(canvas->width()/(double)screenWidth, canvas->height()/(double)screenHeight);
if(rate==0) return;
screen->resize(qRound(screenWidth*rate), qRound(screenHeight*rate));
auto children = screen->children();
foreach(auto childObj, children) {
auto unit = static_cast<ScreenUnit*>(childObj);
unit->setGeometry(qRound(unit->mX*rate), qRound(unit->mY*rate), qRound(unit->mW*rate), qRound(unit->mH*rate));
}
});
2023-07-28 14:48:41 +08:00
splitter->addWidget(canvas);
splitter->setStretchFactor(0,0);
splitter->setStretchFactor(1,1);
splitter->setSizes({320, 1});
2022-08-25 18:43:03 +08:00
int idx = 0;
for(int rr=0; rr<4; rr++) {
QString name = "P"+QString::number(rr+1);
2023-03-31 18:44:09 +08:00
table->setText(rr, "name", name);
table->setText(rr, "x", QString::number(idx));
table->setText(rr, "y", "0");
table->setText(rr, "w", "128");
table->setText(rr, "h", "128");
table->setText(rr, "audio", "0");
table->setText(rr, "backup", "0");
2022-08-25 18:43:03 +08:00
auto unit = new ScreenUnit(this, name, idx, 0, 128, 128, screen);
unit->setAutoFillBackground(true);
pal.setColor(QPalette::Window, colors[rr]);
unit->setPalette(pal);
idx += 128;
}
}
2022-12-16 15:08:53 +08:00
{
auto file = QApplication::applicationDirPath()+"/temp.screen";
QFile qFile(file);
if(qFile.open(QFile::ReadOnly)) {
auto data = qFile.readAll();
qFile.close();
2023-07-28 14:48:41 +08:00
auto json = JFrom(data).toObj();
if(! json.empty()) {
2023-08-21 11:21:00 +08:00
cfg = json;
2023-07-28 14:48:41 +08:00
mBox = json["ModuleConnectionInfo"].toObj();
mModule = mBox["ModuleInfo"].toObj();
2022-12-16 15:08:53 +08:00
}
} else {
auto file = QApplication::applicationDirPath()+"/temp.module";
QFile qFile(file);
if(qFile.open(QFile::ReadOnly)) {
auto data = qFile.readAll();
qFile.close();
2023-07-28 14:48:41 +08:00
auto json = JFrom(data).toObj();
if(! json.empty()) mModule = json;
2022-12-16 15:08:53 +08:00
}
}
}
2022-08-25 18:43:03 +08:00
auto receivePanel = new QWidget;
tab->addTab(receivePanel, "接收卡");
{
2022-09-13 23:16:36 +08:00
auto vBox = new VBox(receivePanel);
2022-08-26 23:15:25 +08:00
auto gBox = new QGroupBox("模组信息");
2022-08-25 18:43:03 +08:00
vBox->addWidget(gBox);
2022-12-16 15:08:53 +08:00
{
auto hh = new HBox(gBox);
hh->addSpacing(20);
auto vvv = new VBox(hh);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
auto lb = new QLabel("驱动芯片: ");
vvv->addWidget(lb);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
lb = new QLabel("译码方式: ");
vvv->addWidget(lb);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
vvv = new VBox(hh);
2022-08-25 18:43:03 +08:00
2023-07-28 14:48:41 +08:00
fdChipType = new QLabel(mModule["ChipType"].toStr());
2022-12-16 15:08:53 +08:00
vvv->addWidget(fdChipType);
2022-08-25 18:43:03 +08:00
2023-07-28 14:48:41 +08:00
fdDecodeMode = new QLabel(mModule["DecodeMode"].toStr());//译码方式
2022-12-16 15:08:53 +08:00
vvv->addWidget(fdDecodeMode);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
hh->addSpacing(20);
vvv = new VBox(hh);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
lb = new QLabel("模组宽度: ");
vvv->addWidget(lb);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
lb = new QLabel("模组高度: ");
vvv->addWidget(lb);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
vvv = new VBox(hh);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
fdModuleWidth = new QLabel(QString::number(mModule["ModuleWidth"].toInt()));
vvv->addWidget(fdModuleWidth);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
fdModuleHeight = new QLabel(QString::number(mModule["ModuleHeight"].toInt()));
vvv->addWidget(fdModuleHeight);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
hh->addSpacing(20);
vvv = new VBox(hh);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
lb = new QLabel("扫描数: ");
vvv->addWidget(lb);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
lb = new QLabel("数据数组: ");
vvv->addWidget(lb);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
vvv = new VBox(hh);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
fdScanNum = new QLabel(QString::number(mModule["ScanNum"].toInt()));
vvv->addWidget(fdScanNum);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
fdGroupNum = new QLabel(QString::number(mModule["GroupNum"].toInt()));
vvv->addWidget(fdGroupNum);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
hh->addSpacing(20);
vvv = new VBox(hh);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
auto btn = new QPushButton(tr("数据线颜色"));
btn->setStyleSheet("QPushButton {border: none; }");
vvv->addWidget(btn);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
btn = new QPushButton(tr("模组抽行设置"));
btn->setStyleSheet("QPushButton {border: none; }");
vvv->addWidget(btn);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
hh->addStretch();
vvv = new VBox(hh);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
btn = new QPushButton("模组选择");
btn->setProperty("ss","blue");
vvv->addWidget(btn);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
btn = new QPushButton("智能设置");
btn->setProperty("ss","blue");
connect(btn, &QPushButton::clicked, this, [this] {
(new ExpertSmartPointSetWin(this))->show();
});
vvv->addWidget(btn);
}
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
gBox = new QGroupBox("单卡带载");
vBox->addWidget(gBox);
{
auto hh = new HBox(gBox);
hh->addSpacing(20);
auto vvv = new VBox(hh);
2022-08-25 18:43:03 +08:00
2022-12-16 15:08:53 +08:00
auto fdNormal = new QRadioButton("常规设计");
fdNormal->setChecked(true);
vvv->addWidget(fdNormal);
2022-09-09 23:25:49 +08:00
2023-08-21 11:21:00 +08:00
fdAdvacned = new QRadioButton("高级设计");
2022-12-16 15:08:53 +08:00
vvv->addWidget(fdAdvacned);
2022-09-09 23:25:49 +08:00
2022-12-16 15:08:53 +08:00
hh->addSpacing(20);
2022-09-09 23:25:49 +08:00
2022-12-16 15:08:53 +08:00
auto line = new QFrame;
line->setFrameShadow(QFrame::Sunken);
line->setFrameShape(QFrame::VLine);
hh->addWidget(line);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
auto stack = new QStackedWidget;
auto poli = stack->sizePolicy();
poli.setVerticalPolicy(QSizePolicy::Maximum);
stack->setSizePolicy(poli);
hh->addWidget(stack);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
auto normalPanel = new QWidget;
stack->addWidget(normalPanel);
{
auto hh = new HBox(normalPanel);
hh->setContentsMargins(0,0,0,0);
auto vvv = new VBox(hh);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
auto lb = new QLabel(tr("宽度"));
vvv->addWidget(lb);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
lb = new QLabel(tr("高度"));
vvv->addWidget(lb);
2022-09-09 23:25:49 +08:00
2022-12-16 15:08:53 +08:00
vvv = new VBox(hh);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
fdCardWidth = new QSpinBox;
fdCardWidth->setRange(0, 99999);
fdCardWidth->setValue(mBox["ModuleRow"].toInt() * mModule["ModuleWidth"].toInt());
vvv->addWidget(fdCardWidth);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
fdCardHeight = new QSpinBox;
fdCardHeight->setRange(0, 99999);
fdCardHeight->setValue(mBox["ModuleCol"].toInt() * mModule["ModuleHeight"].toInt());
vvv->addWidget(fdCardHeight);
hh->addSpacing(20);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
vvv = new VBox(hh);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
lb = new QLabel(tr("多开设置"));
vvv->addWidget(lb);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
lb = new QLabel(tr("级联方向"));
vvv->addWidget(lb);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
vvv = new VBox(hh);
2022-09-09 23:25:49 +08:00
2022-12-16 15:08:53 +08:00
fdSectorCount = new QComboBox;
fdSectorCount->addItem(tr(""), 1);
fdSectorCount->addItem(tr("双开"), 2);
fdSectorCount->addItem(tr("三开"), 3);
fdSectorCount->addItem(tr("四开"), 4);
fdSectorCount->addItem(tr("五开"), 5);
fdSectorCount->addItem(tr("六开"), 6);
fdSectorCount->addItem(tr("七开"), 7);
fdSectorCount->addItem(tr("八开"), 8);
2023-08-21 11:21:00 +08:00
SetCurData(fdSectorCount, mBox["SectorCount"].toInt());
2022-12-16 15:08:53 +08:00
vvv->addWidget(fdSectorCount);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
fdDirection = new QComboBox();
fdDirection->addItem(tr("从左到右"));
fdDirection->addItem(tr("从右到左"));
fdDirection->addItem(tr("从上到下"));
fdDirection->addItem(tr("从下到上"));
fdDirection->setCurrentIndex(mBox["ModuleDirection"].toInt());
vvv->addWidget(fdDirection);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
hh->addStretch();
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
vvv = new VBox(hh);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
auto cb = new QCheckBox(tr("旋转180°"));
vvv->addWidget(cb);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
auto btn = new QPushButton(tr("数据交换"));
btn->setProperty("ss","blue");
vvv->addWidget(btn);
}
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
auto advacnedPanel = new QWidget;
stack->addWidget(advacnedPanel);
{
auto hh = new HBox(advacnedPanel);
hh->setContentsMargins(0,0,0,0);
vvv = new VBox(hh);
auto btn = new QPushButton(tr("平面造型"));
btn->setProperty("ss","blue");
btn->setMaximumWidth(100);
2023-04-18 18:21:34 +08:00
connect(btn, &QPushButton::clicked, this, [=] {
auto win = new ExpertBoxLayoutWin(this);
win->show();
2023-08-21 11:21:00 +08:00
win->raise();
win->activateWindow();
2023-04-18 18:21:34 +08:00
});
2022-12-16 15:08:53 +08:00
vvv->addWidget(btn);
}
connect(fdNormal, &QRadioButton::toggled, this, [=](bool checked) {
stack->setCurrentWidget(checked ? normalPanel : advacnedPanel);
});
2023-08-21 11:21:00 +08:00
if(cfg["is_irr"].toBool()) fdAdvacned->setChecked(true);
2022-12-16 15:08:53 +08:00
}
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
gBox = new QGroupBox(tr("效果测试"));
vBox->addWidget(gBox);
{
auto hh = new HBox(gBox);
hh->addSpacing(20);
auto vvv = new VBox(hh);
auto hhh = new HBox(vvv);
auto lb = new QLabel(tr("视觉刷新率:"));
hhh->addWidget(lb);
auto cbFresh = new QComboBox();
cbFresh->addItem("960");
cbFresh->addItem("1920");
cbFresh->addItem("2880");
cbFresh->addItem("3840");
hhh->addWidget(cbFresh);
hhh = new HBox(vvv);
lb = new QLabel(tr("DCLK频率:"));
hhh->addWidget(lb);
auto cbDCLKf = new QComboBox();
cbDCLKf->addItem("25M");
cbDCLKf->addItem("20.83M");
cbDCLKf->addItem("17.86M");
cbDCLKf->addItem("15.63M");
cbDCLKf->addItem("13.89M");
cbDCLKf->addItem("12.5M");
cbDCLKf->addItem("11.36M");
cbDCLKf->addItem("10.42M");
cbDCLKf->addItem("9.62M");
hhh->addWidget(cbDCLKf);
hhh = new HBox(vvv);
lb = new QLabel(tr("DCLK相位:"));
hhh->addWidget(lb);
auto spinDclkXw = new QSpinBox;
spinDclkXw->setRange(0, 99999);
hhh->addWidget(spinDclkXw);
hhh = new HBox(vvv);
lb = new QLabel(tr("DCLK占空比:"));
hhh->addWidget(lb);
auto spinDclkZkb = new QSpinBox;
spinDclkZkb->setRange(20, 80);
hhh->addWidget(spinDclkZkb);
hhh = new HBox(vvv);
lb = new QLabel(tr("换行时间(ns):"));
hhh->addWidget(lb);
auto spinLineNs = new QSpinBox;
spinLineNs->setRange(2, 9999);
hhh->addWidget(spinLineNs);
hh->addSpacing(20);
2022-09-13 23:16:36 +08:00
vvv = new VBox(hh);
2022-12-16 15:08:53 +08:00
hhh = new HBox(vvv);
lb = new QLabel(tr("亮度有效率:"));
hhh->addWidget(lb);
lb = new QLabel(tr("100%"));
hhh->addWidget(lb);
hhh = new HBox(vvv);
lb = new QLabel(tr("GCLK频率:"));
hhh->addWidget(lb);
auto cbGCLKf = new QComboBox();
cbGCLKf->addItem("25M");
cbGCLKf->addItem("20.83M");
cbGCLKf->addItem("17.86M");
cbGCLKf->addItem("15.63M");
cbGCLKf->addItem("13.89M");
cbGCLKf->addItem("12.5M");
cbGCLKf->addItem("11.36M");
cbGCLKf->addItem("10.42M");
cbGCLKf->addItem("9.62M");
hhh->addWidget(cbGCLKf);
hhh = new HBox(vvv);
lb = new QLabel(tr("灰度级数:"));
hhh->addWidget(lb);
auto cbGryLevel = new QComboBox();
cbGryLevel->addItem("256");
cbGryLevel->addItem("1024");
cbGryLevel->addItem("4096");
cbGryLevel->addItem("8192");
cbGryLevel->addItem("16384");
cbGryLevel->addItem("32768");
cbGryLevel->addItem("65536");
hhh->addWidget(cbGryLevel);
hhh = new HBox(vvv);
lb = new QLabel(tr("GCLK占空比:"));
hhh->addWidget(lb);
auto spinGclkZkb = new QSpinBox;
spinGclkZkb->setRange(20, 80);
hhh->addWidget(spinGclkZkb);
hhh = new HBox(vvv);
lb = new QLabel(tr("换行位置(ns):"));
hhh->addWidget(lb);
auto spinLineWz = new QSpinBox;
spinLineWz->setRange(2, 9999);
hhh->addWidget(spinLineWz);
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
hh->addStretch();
2022-09-13 23:16:36 +08:00
2022-12-16 15:08:53 +08:00
vvv = new VBox(hh);
hhh = new HBox(vvv);
auto btn = new QPushButton(tr("更多设置"));
btn->setProperty("ss","blue");
hhh->addWidget(btn);
2022-09-13 23:16:36 +08:00
}
2022-12-16 15:08:53 +08:00
vBox->addStretch();
//保存,发送,固话,回读区
auto hBox = new HBox(vBox);
hBox->addSpacing(20);
auto btn = new QPushButton(tr("打开配置"));
btn->setProperty("ss","blue");
hBox->addWidget(btn);
hBox->addSpacing(20);
btn = new QPushButton(tr("保存配置"));
btn->setProperty("ss","blue");
connect(btn, &QPushButton::clicked, this, [=] {
auto dir = QApplication::applicationDirPath()+"/BoxFiles";
QDir(dir).mkdir(".");
auto file = QFileDialog::getSaveFileName(this, tr("保存文件"), dir, tr("Box file (*.box)"));
if(file.isEmpty()) return;
QFile qFile(file);
if(! qFile.open(QFile::WriteOnly)) {
QMessageBox::critical(this, tr("失败"), QString(tr("准备写入 %1 文件失败")).arg(file));
return;
}
auto res = qFile.write(savedData());
qFile.close();
if(res < 0) {
QMessageBox::critical(this, tr("失败"), QString(tr("写入 %1 文件失败")).arg(file));
return;
}
QMessageBox::information(this, tr("保存成功"), tr("保存成功"));
});
hBox->addWidget(btn);
hBox->addStretch();
btn = new QPushButton(tr("保存Map"));
btn->setProperty("ss","blue");
connect(btn, &QPushButton::clicked, this, [=] {
auto dir = QApplication::applicationDirPath();
auto file = QFileDialog::getSaveFileName(this, tr("保存文件"), dir);
if(file.isEmpty()) return;
QFile qFile(file);
if(! qFile.open(QFile::WriteOnly)) {
QMessageBox::critical(this, tr("失败"), QString(tr("准备写入 %1 文件失败")).arg(file));
return;
}
QByteArray data;
addMapData(data);
auto res = qFile.write(data);
qFile.close();
if(res < 0) {
QMessageBox::critical(this, tr("失败"), QString(tr("写入 %1 文件失败")).arg(file));
return;
}
QMessageBox::information(this, tr("保存成功"), tr("保存成功"));
});
hBox->addWidget(btn);
hBox->addSpacing(20);
btn = new QPushButton(tr("发送数据"));
btn->setProperty("ss","blue");
connect(btn, &QPushButton::clicked, this, [=] {
QByteArray data;
addMapData(data);
2023-03-20 11:30:19 +08:00
2022-12-16 15:08:53 +08:00
QMessageBox::information(this, tr("发送成功"), tr("发送成功"));
});
hBox->addWidget(btn);
hBox->addSpacing(20);
btn = new QPushButton(tr("固化数据"));
btn->setProperty("ss","blue");
hBox->addWidget(btn);
hBox->addSpacing(20);
btn = new QPushButton(tr("回读数据"));
btn->setProperty("ss","blue");
hBox->addWidget(btn);
2022-09-09 23:25:49 +08:00
2022-08-25 18:43:03 +08:00
vBox->addStretch();
2022-12-16 15:08:53 +08:00
//状态栏
auto statusWgt = new QWidget;
statusWgt->setStyleSheet("QWidget{background-color:#222;}");
vBox->addWidget(statusWgt);
{
auto hh = new HBox(statusWgt);
auto lb = new QLabel(tr("状态:"));
hh->addWidget(lb);
}
2022-08-25 18:43:03 +08:00
}
2022-08-25 22:52:52 +08:00
auto connPanel = new QWidget;
2022-12-16 15:08:53 +08:00
tab->addTab(connPanel, tr("显示屏连接(正面看屏)"));
2022-08-25 22:52:52 +08:00
{
auto vBox = new QVBoxLayout(connPanel);
vBox->setContentsMargins(4, 4, 4, 4);
auto hhh = new QHBoxLayout;
vBox->addLayout(hhh);
auto bnScreen = new QPushButton("屏1");
hhh->addWidget(bnScreen);
hhh->addStretch();
auto lb = new QLabel("显示屏数目:");
hhh->addWidget(lb);
auto fdScreenCnt = new QSpinBox;
fdScreenCnt->setRange(1, 99);
fdScreenCnt->setValue(1);
hhh->addWidget(fdScreenCnt);
2022-08-26 23:15:25 +08:00
auto stack = new QStackedLayout;
vBox->addLayout(stack);
stack->addWidget(new ExpertScreenConnWin());
2022-08-25 22:52:52 +08:00
}
2022-08-25 18:43:03 +08:00
}
2022-12-16 15:08:53 +08:00
void ExpertWin::closeEvent(QCloseEvent *event) {
BaseWin::closeEvent(event);
2023-08-21 11:21:00 +08:00
QFile qFile("temp.screen");
2022-12-16 15:08:53 +08:00
if(! qFile.open(QFile::WriteOnly)) return;
qFile.write(savedData());
qFile.close();
}
QByteArray ExpertWin::savedData() {
mBox.insert("ModuleInfo", mModule);
auto ModuleWidth = mModule["ModuleWidth"].toInt();
auto ModuleHeight = mModule["ModuleHeight"].toInt();
mBox.insert("ModuleRow", (fdCardWidth->value() + ModuleWidth - 1) / ModuleWidth);
mBox.insert("ModuleCol", (fdCardHeight->value() + ModuleHeight - 1) / ModuleHeight);
mBox.insert("ModuleDirection", fdDirection->currentIndex());
mBox.insert("SectorCount", fdSectorCount->currentData().toInt());
2023-08-21 11:21:00 +08:00
JObj obj{
{"ModuleConnectionInfo", mBox},
{"is_irr", fdAdvacned->isChecked()},
};
2023-07-28 14:48:41 +08:00
return JToBytes(obj, " ");
2022-12-16 15:08:53 +08:00
}
void ExpertWin::addMapData(QByteArray &data) {
auto ModuleWidth = mModule["ModuleWidth"].toInt();
auto ModuleHeight = mModule["ModuleHeight"].toInt();
auto ModuleRow = (fdCardWidth->value() + ModuleWidth - 1) / ModuleWidth;
auto ModuleCol = (fdCardHeight->value() + ModuleHeight - 1) / ModuleHeight;
auto CardWidth = ModuleRow * ModuleWidth;
auto CardHeight = ModuleCol * ModuleHeight;
auto ModuleDirection = fdDirection->currentIndex();
//auto SectorCount = fdSectorCount->currentData().toInt();
QMap<uint, uint> map;
int memY = 0, memX = 0;
for(int boxY=0; boxY<CardHeight; boxY++) {
for(int boxX=0; boxX<CardWidth; boxX++) {
if(memX > 255) {
memX = 0;
memY++;
}
map.insert(boxY<<16|boxX, memY<<16|memX);
memX++;
}
memX = 0;
memY++;
}
auto points = mModule["Points"].toArray();
auto scans = mModule["Scans"].toArray();
auto GroupNum = mModule["GroupNum"].toInt();
auto jCnt = ModuleCol * GroupNum;
2023-07-28 14:48:41 +08:00
for(auto scan : scans) {
2022-12-16 15:08:53 +08:00
QList<QList<QByteArray>> chunkses;
for(int j=0; j<jCnt; j++) {
int lastMemY = INT_MIN;
int lastMemX = -1;
int cnt = 1, ttl = 1;
bool isAnti = false;
QList<QByteArray> chunks;
QByteArray chunk;
QString chstr;
for(int mm=0; mm<ModuleRow; mm++) {
int m = ModuleDirection==0 ? ModuleRow-1-mm : mm;
2023-07-28 14:48:41 +08:00
for(auto point : points) {
2022-12-16 15:08:53 +08:00
uint boxY = j * scans.size() + scan.toInt();
uint boxX = m * ModuleWidth + point.toInt();
if(boxX < 0) { //虚点
if(lastMemY==-1) memX = lastMemX + 1;
else {
memY = -1;
memX = 0;
}
} else {
auto mem = map[boxY<<16 | boxX];
memY = mem >> 16;
memX = mem & 0xffff;
}
if(memY==lastMemY && ttl < 64 && qAbs(memX-lastMemX)==1) {
if(cnt==1) {
isAnti = memX < lastMemX;
cnt++;
ttl++;
lastMemX = memX;
continue;
} else if(memX < lastMemX == isAnti) {
cnt++;
ttl++;
lastMemX = memX;
continue;
}
}
if(lastMemY > INT_MIN) {
uint y = lastMemY==-1 ? 0 : lastMemY;
uint x = isAnti ? lastMemX : lastMemX-cnt+1;
chunk.append((j << 2) + (y >> 8)).append(y).append(x).append((isAnti << 7)+cnt);
chstr += QString("j%1 行%2 列%3 序%4 长%5").arg(j).arg(y).arg(x).arg(isAnti).arg(cnt);
}
if(ttl>=64) {
chunks.append(chunk);
chunk = QByteArray();
qDebug() << chstr;
chstr.clear();
ttl = 1;
}
cnt = 1;
lastMemY = memY;
lastMemX = lastMemY==-1 ? 0 : memX;
}
}
uint y = lastMemY==-1 ? 0 : lastMemY;
uint x = isAnti ? lastMemX : lastMemX-cnt+1;
chunk.append((j << 2) + (y >> 8)).append(y).append(x).append((isAnti << 7)+cnt);
chstr += QString("j%1 行%2 列%3 序%4 长%5").arg(j).arg(y).arg(x).arg(isAnti).arg(cnt);
chunks.append(chunk);
chunkses.append(chunks);
qDebug() << chstr;
}
data.append(0xAA).append(scan.toInt()).append(2, 0);
auto chend = chunkses[0].size()-1;
auto start = data.size();
for(int ch=0; ch<=chend; ch++) {
data.append(0x55).append(ch==chend ? (char)(1<<7) : 0).append(2, 0);
auto start = data.size();
foreach(auto chunks, chunkses) data.append(chunks[ch]);
auto num = (data.size() - start) / 4;
data[start-2] = num;
data[start-3] = num>>8;
}
auto len = data.size() - start;
data[start-1] = len;
data[start-2] = len>>8;
}
}