123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869 |
- #include "answerWidget.h"
- #include "ui_answerWidget.h"
- #include <QScrollBar>
- #include "CAppInfo.h"
- #include "awMsgBox.h"
- #include "awQuestionNavigate.h"
- #include "CCommonTools.h"
- #include "logproc.h"
- #include "inprogressFace.h"
- #include "popMsgBox.h"
- answerWidget::answerWidget(QWidget *parent) :
- QWidget(parent),
- ui(new Ui::answerWidget)
- {
- ui->setupUi(this);
- setStyleSheet(g_appInfoPtr->m_sQssStr);
-
- m_sRemoteList
- << "teamviewer"
- << "lookmypc"
- //<< "xt"
- << "winaw32"
- << "pcaquickconnect"
- << "sessioncontroller"
- << "sunlogin";
- // << "sunloginremote";
- /* << "qq"
- <<"wechat"
- <<"wemeetapp";*/
- m_sRemoteTipList
- << "TeamViewer"
- << "LookMyPC"
- //<< QString::fromLocal8Bit("协通")
- << "Symantec PCAnywhere"
- << "Symantec PCAnywhere"
- << "Symantec PCAnywhere"
- << QString::fromLocal8Bit("向日葵");
- // << QString::fromLocal8Bit("向日葵");
- /*
- << "QQ"
- << QString::fromLocal8Bit("微信")
- << QString::fromLocal8Bit("腾讯会议");*/
- qRegisterMetaType<CGetExamById>("CGetExamById");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnGetExamById, this, &answerWidget::onGetExamById);
- qRegisterMetaType<CGetExamRecordPaperStruct>("CGetExamRecordPaperStruct");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnGetExamRecordPaperStruct, this, &answerWidget::onGetExamRecordPaperStruct);
- qRegisterMetaType<CGetExamProperty>("CGetExamProperty");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnGetExamProperty, this, &answerWidget::onGetExamProperty);
- qRegisterMetaType<CWeiXinAnswerEnabled>("CWeiXinAnswerEnabled");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnWeiXinAnswerEnabled, this, &answerWidget::onWeiXinAnswerEnabled);
- qRegisterMetaType<CGetQuestionContent>("CGetQuestionContent");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnGetQuestionContent, this, &answerWidget::onGetQuestionContent);
- qRegisterMetaType<CFindExamQuestionList>("CFindExamQuestionList");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnFindExamQuestionList, this, &answerWidget::onFindExamQuestionList);
- qRegisterMetaType<CStartAnswer>("CStartAnswer");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnStartAnswer, this, &answerWidget::onStartAnswer);
- qRegisterMetaType<CExamHeartbeat>("CExamHeartbeat");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnExamHeartbeat, this, &answerWidget::onExamHeartbeat);
- qRegisterMetaType<CSubmitQuestionAnswer>("CSubmitQuestionAnswer");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnSubmitQuestionAnswer, this, &answerWidget::onSubmitQuestionAnswer);
- qRegisterMetaType<CEndExam>("CEndExam");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnEndExam, this, &answerWidget::onEndExam);
- // qRegisterMetaType<CGetOrgPropertiesByGroupWithoutCache>("CGetOrgPropertiesByGroupWithoutCache");
- // connect(g_httpBllPtr.get(), &CHttpBll::sgnGetOrgPropertiesByGroupWithoutCache, this, &answerWidget::onGetOrgPropertiesByGroupWithoutCache);
- qRegisterMetaType<CStartFaceLiveVerify>("CStartFaceLiveVerify");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnStartFaceLiveVerify, this, &answerWidget::onStartFaceLiveVerify);
- qRegisterMetaType<CBaseResponsePackage>("CBaseResponsePackage");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnExamControlCheckTime, this, &answerWidget::onExamControlCheckTime);
-
- #ifdef _DEBUG
- //g_appInfoPtr->m_oExamInfo.bLivenessCheck = false;
- // g_appInfoPtr->m_oExamInfo.bFaceCheck = false;
- #endif // _DEBUG
- //m_MonitorEnumeratorPtr = std::make_shared<CMultiMonitorEnumerator>();
- m_nLeftSeconds = 0;
- m_nHeartBreatFailedCount = 0;
- bShowLeftHint = false;
- GetExamProperty();
- // CHttpRequestPackage hrp;
- // hrp.sUri = QString("/api/ecs_exam_work/exam/getExamPropertyFromCacheByStudentSession/%1/%2")
- // .arg(g_appInfoPtr->m_oExamInfo.nExamId).arg("SNAPSHOT_INTERVAL,PRACTICE_TYPE,FREEZE_TIME,PRACTICE_TYPE");
- // hrp.nRequestType = RequestType::rtGetExamProperty;
- // hrp.sCommonStr = "SNAPSHOT_INTERVAL,PRACTICE_TYPE,FREEZE_TIME";
- // g_httpBllPtr->get(hrp);
- // {
- // CHttpRequestPackage hrp;
- // hrp.sUri = QString("/api/ecs_exam_work/exam/%1").arg(g_appInfoPtr->m_oExamInfo.nExamId);
- // hrp.nRequestType = RequestType::rtGetExamById;
- // g_httpBllPtr->get(hrp);
- // }
- // CHttpRequestPackage hrp1;
- // hrp1.sUri = "/api/ecs_oe_student/client/exam/process/getExamRecordPaperStruct";
- // hrp1.sParamList.push_back(QString("examRecordDataId,%1").arg(g_appInfoPtr->m_oExamInfo.nExamRecordDataId));
- // hrp1.nRequestType = RequestType::rtGetExamRecordPaperStruct;
- // hrp1.eParamType = HttpParamType::hptUrl;
- // g_httpBllPtr->post(hrp1);
- // {
- // CHttpRequestPackage hrp;
- // hrp.sUri = "/api/ecs_oe_student/client/exam/process/findExamQuestionList";
- // hrp.nRequestType = RequestType::rtFindExamQuestionList;
-
- // g_httpBllPtr->post(hrp);
- // }
- // {
- // CHttpRequestPackage hrp;
- // hrp.sUri = QString("/api/ecs_exam_work/exam/weixinAnswerEnabled/%1")
- // .arg(g_appInfoPtr->m_oExamInfo.nExamId);
- // hrp.sParamList.push_back(QString::fromLocal8Bit("courseCode,%1").arg(g_appInfoPtr->m_oExamInfo.sCourseCode));
- // hrp.nRequestType = RequestType::rtWeiXinAnswerEnabled;
- // g_httpBllPtr->get(hrp);
- // }
- m_pCountDownTimer = std::make_shared<QTimer>();
- m_pCountDownTimer->setInterval(1000);
- connect(m_pCountDownTimer.get(), &QTimer::timeout, this, [&](){
- --m_nLeftSeconds;
- if(m_nLeftSeconds >= 0)
- {
- ui->label_lastTime->setText(QString("%1:%2:%3").arg(m_nLeftSeconds/60/60, 2, 10, QChar('0'))
- .arg(m_nLeftSeconds/60%60, 2, 10, QChar('0'))
- .arg(m_nLeftSeconds%60, 2, 10, QChar('0')));
- }
- if(m_nLeftSeconds <= 0)
- {
- // m_pCountDownTimer->stop();
- handinPaper();
- }
- if(m_nLeftSeconds <= 5*60 &&
- m_nLeftSeconds >= 5 * 60 - 5 &&
- !bShowLeftHint)
- {
- bShowLeftHint = true;
- if(m_ptimeLeftTips == nullptr)
- {
- m_ptimeLeftTips = std::make_shared<awTimeLeftTips>(MASK_POP_WIDGET_TYPE::wt_timeLeft, (QWidget*)(this->parent()));
- connect(m_ptimeLeftTips.get(), &awTimeLeftTips::timeLeftConfirm, this, [&](){
- m_ptimeLeftTips.reset();
- });
- }
- m_ptimeLeftTips->show();
- }
- if(g_appInfoPtr->m_oExamInfo.bLivenessCheck &&
- g_appInfoPtr->m_oExamInfo.nFaceLiveVerifyId > 0)
- {
- if(bShowLivenessTip && (m_nUsedExamSeconds + m_nEnterExamTime - m_nLeftSeconds + g_appInfoPtr->m_oExamInfo.nActionAlert) > g_appInfoPtr->m_oExamInfo.nFaceVerifyDoMinute*60)
- {
- bShowLivenessTip = false;
- m_nEnterLivenessFaceSeconds = m_nLeftSeconds - 20;
- ShowMsg(QString::fromLocal8Bit("%1秒后开始指定动作检测,请准备!").arg(g_appInfoPtr->m_oExamInfo.nActionAlert), g_appInfoPtr->m_pAnsBgWidget);
- }
- if((m_nUsedExamSeconds + m_nEnterExamTime - m_nLeftSeconds) > g_appInfoPtr->m_oExamInfo.nFaceVerifyDoMinute * 60
- && m_nEnterLivenessFaceSeconds > m_nLeftSeconds)
- {
- //活体检测
- if(m_pFaceLiveness == nullptr)
- {
- stopCapture();
- m_pFaceLiveness = std::make_shared<faceLiveness>(FACE_LIVENESS_TYPE::flt_inprogress, g_appInfoPtr->m_pAnsBgWidget);
- connect(m_pFaceLiveness.get(), &faceLiveness::faceLivenessFaild, this, [&](){
- g_appInfoPtr->m_oExamInfo.nFaceLiveVerifyId = 0;
- m_pFaceLiveness.reset();
- if(g_appInfoPtr->m_oExamInfo.nFaceVerifyTimes < 2)
- {
- emit gobackLogin();
- }
- else
- {
- //交卷
- handinPaper(true);
- }
- });
- connect(m_pFaceLiveness.get(), &faceLiveness::faceLivenessSucceed, this, [&](){
- g_appInfoPtr->m_oExamInfo.nFaceLiveVerifyId = 0;
- m_pFaceLiveness.reset();
- if (g_appInfoPtr->m_oExamInfo.bFaceCheck)
- {
- startCapture();
- }
- });
- m_pFaceLiveness->show();
- }
- }
- }
- });
- if (g_appInfoPtr->m_bDisableRemoteAssistance)
- {
- qRegisterMetaType<CGetSoftwareConfig>("CGetSoftwareConfig");
- connect(g_httpBllPtr.get(), &CHttpBll::sgnGetSoftwareConfig, this, &answerWidget::onGetSoftwareConfig);
- CHttpRequestPackage hrp;
- hrp.sUri = QString("https://%1/oe_client/software.json").arg(g_appInfoPtr->m_sEscDomain);
- hrp.nRequestType = RequestType::rtGetSoftwareConfig;
- g_httpBllPtr->getUrl(hrp);
- }
- m_pHeartbeatTimer = std::make_shared<QTimer>();
- m_pHeartbeatTimer->setInterval(60*1000);
- connect(m_pHeartbeatTimer.get(), &QTimer::timeout, this, [&](){
- heartBreat();
- if(g_appInfoPtr->m_bDisableRemoteAssistance)
- {
- checkRemoteBreach();
- }
-
- });
- }
- answerWidget::~answerWidget()
- {
- awMsgBox::clear(this);
- if (g_inProcessFace)
- {
- stopCapture();
- g_inProcessFace.reset();
- }
- delete ui;
- }
- void answerWidget::GetExamProperty()
- {
- CHttpRequestPackage hrp;
- hrp.sUri = QString("/api/ecs_exam_work/exam/getExamPropertyFromCacheByStudentSession/%1/%2")
- .arg(g_appInfoPtr->m_oExamInfo.nExamId).arg("SNAPSHOT_INTERVAL,PRACTICE_TYPE,FREEZE_TIME,SHOW_MULTIPLE_CHOICE_WARNING");
- hrp.nRequestType = RequestType::rtGetExamProperty;
- hrp.sCommonStr = "SNAPSHOT_INTERVAL,PRACTICE_TYPE,FREEZE_TIME,SHOW_MULTIPLE_CHOICE_WARNING";
- g_httpBllPtr->get(hrp);
- }
- void answerWidget::GetExamById()
- {
- CHttpRequestPackage hrp;
- hrp.sUri = QString("/api/ecs_exam_work/exam/%1").arg(g_appInfoPtr->m_oExamInfo.nExamId);
- hrp.nRequestType = RequestType::rtGetExamById;
- g_httpBllPtr->get(hrp);
- }
- void answerWidget::GetExamRecordPaperStruct()
- {
- CHttpRequestPackage hrp1;
- hrp1.sUri = "/api/ecs_oe_student/client/exam/process/getExamRecordPaperStruct";
- hrp1.sParamList.push_back(QString("examRecordDataId,%1").arg(g_appInfoPtr->m_oExamInfo.nExamRecordDataId));
- hrp1.nRequestType = RequestType::rtGetExamRecordPaperStruct;
- hrp1.eParamType = HttpParamType::hptUrl;
- g_httpBllPtr->post(hrp1);
- }
- void answerWidget::FindExamQuestionList()
- {
- CHttpRequestPackage hrp;
- hrp.sUri = "/api/ecs_oe_student/client/exam/process/findExamQuestionList";
- hrp.nRequestType = RequestType::rtFindExamQuestionList;
- g_httpBllPtr->post(hrp);
- }
- void answerWidget::WeiXinAnswerEnabled()
- {
- CHttpRequestPackage hrp;
- hrp.sUri = QString("/api/ecs_exam_work/exam/weixinAnswerEnabled/%1")
- .arg(g_appInfoPtr->m_oExamInfo.nExamId);
- hrp.sParamList.push_back(QString::fromLocal8Bit("courseCode,%1").arg(g_appInfoPtr->m_oExamInfo.sCourseCode));
- hrp.nRequestType = RequestType::rtWeiXinAnswerEnabled;
- g_httpBllPtr->get(hrp);
- }
- void answerWidget::onGetSoftwareConfig(CGetSoftwareConfig getSoftwareConfig)
- {
- if (getSoftwareConfig.nCode == 200)
- {
- QString sSoftwareConfig = QByteArray::fromBase64(getSoftwareConfig.sSoftwareConfig.toLocal8Bit());
- if(!sSoftwareConfig.isEmpty())
- {
- Json::Reader reader;
- Json::Value jsonRoot = Json::Value::null;
- if (reader.parse(sSoftwareConfig.toStdString(), jsonRoot))
- {
- QString sCamera = jsonRoot["vCamList"].asString().c_str();
- QStringList cameraList = sCamera.split("\n", QString::SkipEmptyParts);
- QString sRemoteApp = jsonRoot["remoteApp"].asString().c_str();
- QStringList remoteAppList = sRemoteApp.split("\n", QString::SkipEmptyParts);
- // m_sRemoteList += remoteAppList;
- // m_sRemoteTipList += remoteAppList;
- for(QString remoteApp : remoteAppList)
- {
- QString remoteAppProcess = remoteApp.left(remoteApp.indexOf("@@@"));
- QString remoteAppName = remoteApp.right(remoteApp.length() - remoteApp.indexOf("@@@") - 3);
- m_sRemoteList<<remoteAppProcess;
- m_sRemoteTipList<<remoteAppName;
- }
- }
- }
- }
- }
- void answerWidget::checkRemoteBreach()
- {
-
- static int nIndex = 0;
- ++nIndex;
- if(nIndex % 3 == 0)
- {
- std::shared_ptr<CMultiMonitorEnumerator> m_MonitorEnumeratorPtr = std::make_shared<CMultiMonitorEnumerator>();
- bool bExit = false;
- QString sCheckStr = "";
- if (CCommonTools::isUseRDP())
- {
- sCheckStr = QString::fromLocal8Bit("检测是否开启远程桌面");
- qDebug() << QString::fromLocal8Bit("开启远程桌面");
- bExit = true;
- }
-
- if (m_MonitorEnumeratorPtr->getMontorNumber() > 1)
- {
- sCheckStr = QString::fromLocal8Bit("请检测是否开启分屏");
- qDebug() << QString::fromLocal8Bit("开启双屏");
- bExit = true;
- }
- QStringList appList;
- CCommonTools::getAllAppNameList(appList, m_sRemoteList, m_sRemoteTipList);
- if (appList.count() > 0)
- {
- bExit = true;
- for (int i = 0; i < appList.count(); i++)
- {
- if (sCheckStr.isEmpty())
- {
- sCheckStr = QString::fromLocal8Bit("请检测是否开启%1").arg(appList[i]);
- }
- else
- {
- sCheckStr += QString::fromLocal8Bit("、%1").arg(appList[i]);
- }
- }
- }
- QApplication::processEvents();
- if (bExit)
- {
- //退出
- awTimeLeftTips *wExitExam = new awTimeLeftTips(MASK_POP_WIDGET_TYPE::wt_exitExam, (QWidget*)(this->parent()));
- wExitExam->setText(sCheckStr, QString::fromLocal8Bit("退出考试"));
- connect(wExitExam, &awTimeLeftTips::timeLeftConfirm, this, [this, wExitExam]() {
- if (m_pNetWorkErrorTimerPtr)
- {
- m_pNetWorkErrorTimerPtr->stop();
- }
- delete wExitExam;
- emit gobackLogin();
- });
- wExitExam->show();
- if (m_pNetWorkErrorTimerPtr == nullptr)
- {
- m_pNetWorkErrorTimerPtr = std::make_shared<QTimer>();
- m_pNetWorkErrorTimerPtr->setInterval(30 * 1000);
- connect(m_pNetWorkErrorTimerPtr.get(), &QTimer::timeout, [this, wExitExam]() {
- m_pNetWorkErrorTimerPtr->stop();
- delete wExitExam;
- emit gobackLogin();
- });
- }
- m_pNetWorkErrorTimerPtr->start();
- }
- }
- }
- void answerWidget::setUI(const int nLeft, const int nTop, const int nWidth, const int nHeight)
- {
- setGeometry(nLeft, nTop, nWidth, nHeight);
- ui->widget_aw_answerBG->setGeometry(0, 0, width()*970/(970+270), height());
- ui->widget_navigate->setGeometry(ui->widget_aw_answerBG->x() + ui->widget_aw_answerBG->width() + g_appInfoPtr->m_fRate*20, 0,
- width() - ui->widget_aw_answerBG->width() - g_appInfoPtr->m_fRate*20, height());
- ui->widget_aw_face->setGeometry(0, ui->widget_navigate->height() - g_appInfoPtr->m_fRate*140, ui->widget_navigate->width(), g_appInfoPtr->m_fRate*140);
- ui->widget_aw_top->setGeometry(0, 0, ui->widget_aw_answerBG->width(), g_appInfoPtr->m_fRate*56);
- ui->widget_ng_top->setGeometry(0, 0, ui->widget_navigate->width(), g_appInfoPtr->m_fRate*56);
- ui->label_answerProgress->adjustSize();
- ui->label_answerProgress->setGeometry(g_appInfoPtr->m_fRate*20, (ui->widget_aw_top->height() - ui->label_answerProgress->height())/2,
- ui->label_answerProgress->width(), ui->label_answerProgress->height());
- ui->pgb_answerProgress->setGeometry(ui->label_answerProgress->x() + ui->label_answerProgress->width() + g_appInfoPtr->m_fRate*8,
- (ui->widget_aw_top->height() - g_appInfoPtr->m_fRate*20)/2,
- g_appInfoPtr->m_fRate*200, g_appInfoPtr->m_fRate*20);
- ui->btn_handInPaper->setGeometry(ui->widget_aw_top->width() - g_appInfoPtr->m_fRate*(10 + 100), g_appInfoPtr->m_fRate*10,
- g_appInfoPtr->m_fRate*100, g_appInfoPtr->m_fRate*36);
- ui->label_lastTimeIcon->setGeometry(g_appInfoPtr->m_fRate*48, g_appInfoPtr->m_fRate*12, g_appInfoPtr->m_fRate*32, g_appInfoPtr->m_fRate*32);
- ui->label_lastTime->adjustSize();
- ui->label_lastTime->setGeometry(ui->label_lastTimeIcon->x() + ui->label_lastTimeIcon->width() + g_appInfoPtr->m_fRate*10,
- ui->label_lastTimeIcon->y() + (ui->label_lastTimeIcon->height() - ui->label_lastTime->height())/2,
- ui->label_lastTime->width(), ui->label_lastTime->height());
- ui->btn_all->setGeometry(g_appInfoPtr->m_fRate*30, ui->widget_ng_top->height() + g_appInfoPtr->m_fRate*20,
- g_appInfoPtr->m_fRate*90, g_appInfoPtr->m_fRate*28);
- ui->btn_allNum->setGeometry(ui->btn_all->x() + ui->btn_all->width() - g_appInfoPtr->m_fRate*(4 + 30), ui->btn_all->y() + (ui->btn_all->height() - g_appInfoPtr->m_fRate*20)/2,
- g_appInfoPtr->m_fRate*30, g_appInfoPtr->m_fRate*20);
- ui->btn_answered->setGeometry(ui->btn_all->x() + ui->btn_all->width() + g_appInfoPtr->m_fRate*10,
- ui->btn_all->y(), ui->btn_all->width(), ui->btn_all->height());
- ui->btn_answeredNum->setGeometry(ui->btn_answered->x() + ui->btn_answered->width() - g_appInfoPtr->m_fRate*(4 + 30), ui->btn_allNum->y(),
- ui->btn_allNum->width(), ui->btn_allNum->height());
- ui->btn_unanswered->setGeometry(ui->btn_all->x(), ui->btn_all->y() + ui->btn_all->height() + g_appInfoPtr->m_fRate*10,
- ui->btn_all->width(), ui->btn_all->height());
- ui->btn_unansweredNum->setGeometry(ui->btn_allNum->x(), ui->btn_unanswered->y() + (ui->btn_unanswered->height() - g_appInfoPtr->m_fRate*20)/2,
- ui->btn_allNum->width(), ui->btn_allNum->height());
- ui->btn_marked->setGeometry(ui->btn_answered->x(), ui->btn_unanswered->y(), ui->btn_all->width(), ui->btn_all->height());
- ui->btn_markedNum->setGeometry(ui->btn_answeredNum->x(), ui->btn_unansweredNum->y(), ui->btn_allNum->width(), ui->btn_allNum->height());
- ui->label_HLine->setGeometry(ui->btn_all->x(), ui->btn_unanswered->y() + ui->btn_unanswered->height() + g_appInfoPtr->m_fRate*20,
- ui->widget_navigate->width() - ui->btn_all->x()*2, g_appInfoPtr->m_fRate*1 < 1 ? 1 : g_appInfoPtr->m_fRate*1);
- ui->lw_aw_questionList->setGeometry(0, ui->label_HLine->y(), ui->widget_navigate->width(),
- ui->widget_aw_face->y() - ui->label_HLine->y() - ui->label_HLine->height());
- ui->lw_aw_questionList->setVerticalScrollMode(QListWidget::ScrollPerPixel);
- ui->lw_aw_questionList->verticalScrollBar()->setSingleStep(5);
- }
- void answerWidget::onGetExamById(CGetExamById getExamById)
- {
- if (getExamById.nCode == 200)
- {
- m_nRetryCount = 0;
- g_appInfoPtr->m_oExamInfo.nExamId = getExamById.nId;
- g_appInfoPtr->m_oExamInfo.sExamType = getExamById.sExamType;
- g_appInfoPtr->m_oExamInfo.nDuration = getExamById.nDuration;
- GetExamRecordPaperStruct();
- }
- else
- {
- // if(getExamById.sMessage.isEmpty())
- // {
- // ShowMsg(QString::fromLocal8Bit("获取考试信息出错"), g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- // else
- // {
- // ShowMsg(getExamById.sMessage, g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- if(++m_nRetryCount > 3)
- {
- //退出
- exitExamTip();
- }
- else
- {
- GetExamById();
- }
- }
- }
- void answerWidget::onGetExamRecordPaperStruct(CGetExamRecordPaperStruct getExamRecordPaperStruct)
- {
- if (getExamRecordPaperStruct.nCode == 200)
- {
- m_nRetryCount = 0;
- m_vPaperGroupStruct.swap(getExamRecordPaperStruct.vPaperGroupStruct);
- int nSize = m_vPaperGroupStruct.size();
- QString sQuestionId = "";
- for (int i = 0; i < nSize; ++i)
- {
- CPaperGroupStruct &pgs = m_vPaperGroupStruct[i];
- awQuestionNavigate *questionItem = new awQuestionNavigate(pgs);
- connect(questionItem, &awQuestionNavigate::showSubQuestion, this, [&](QString sQuestionId, int nOrder, bool bHasContent) {
- showQuestionByOrder(nOrder);
- /*if (bHasContent)
- {
- for (CQuestionStruct &qs : pgs.vQuestionStruct)
- {
- if (qs.sQuestionId == sQuestionId)
- {
- QString sGroupTitleText = QString::fromLocal8Bit("%1、%2 (共%3题)").arg(CCommonTools::Arab2Sinogram(pgs.nNumber)).arg(pgs.sGroupName).arg(pgs.nTotalSubquestion);
- QString sGroupProgressText = QString::fromLocal8Bit("完成进度(%1/%2)").arg(pgs.nAnsweredCount).arg(pgs.nTotalSubquestion);
- showSubQuestion(qs, nOrder, sGroupTitleText, sGroupProgressText);
- }
- }
- }
- else
- {
- getQuestionContent(sQuestionId, nOrder);
- }
- */
- });
- QListWidgetItem *pItem = new QListWidgetItem;
- ui->lw_aw_questionList->addItem(pItem);
- ui->lw_aw_questionList->setItemWidget(pItem, questionItem);
- int nHeight = questionItem->setUI(ui->lw_aw_questionList->width() - g_appInfoPtr->m_fRate*60);
- QSize size = pItem->sizeHint();
- size.setHeight(nHeight);
- pItem->setSizeHint(size);
- }
- WeiXinAnswerEnabled();
- }
- else
- {
- // if(getExamRecordPaperStruct.sMessage.isEmpty())
- // {
- // ShowMsg(QString::fromLocal8Bit("获取考试结构出错"), g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- // else
- // {
- // ShowMsg(getExamRecordPaperStruct.sMessage, g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- if(++m_nRetryCount > 3)
- {
- //退出
- exitExamTip();
- }
- else
- {
- GetExamRecordPaperStruct();
- }
- }
- }
- CAnsweredQuestion answerWidget::findQuestionByOrder(CFindExamQuestionList &feql, int nOrder)
- {
- for (int i = 0; i < feql.vAnsweredQuestion.size(); ++i)
- {
- if (feql.vAnsweredQuestion[i].nOrder == nOrder)
- {
- return feql.vAnsweredQuestion[i];
- }
- }
- }
- void answerWidget::onFindExamQuestionList(CFindExamQuestionList findExamQuestionList)
- {
- if (findExamQuestionList.nCode == 200)
- {
- m_nRetryCount = 0;
- int nTotal = 0;
- int nAnswered = 0;
- int nMarked = 0;
- int nSize = m_vPaperGroupStruct.size();
- for (int i = 0; i < nSize; ++i)
- {
- int nQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct.size();
- for (int j = 0; j < nQuestionSize; ++j)
- {
- int nSubQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct.size();
- for (int k = 0; k < nSubQuestionSize; ++k)
- {
- nTotal++;
- int nOrder = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k].nOrder;
-
- CAnsweredQuestion aq= findQuestionByOrder(findExamQuestionList, nOrder);
- m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k].bAnswered = aq.bIsAnswer;
- m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k].bMarked = aq.bIsSign;
- m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k].sStudentAnswer = aq.sStudentAnswer;
- if(!aq.sStudentAnswer.isEmpty() && (aq.sQuestionType == QUESTION_TYPE::SingleChoice ||
- aq.sQuestionType == QUESTION_TYPE::MultipleChoice ||
- aq.sQuestionType == QUESTION_TYPE::TrueOrFalse))
- {
- Json::Reader reader;
- Json::Value jAnswer = Json::Value::null;
- if (!reader.parse(aq.sStudentAnswer.toStdString(), jAnswer))
- {
- // ShowMsg(QString::fromLocal8Bit("解析题干出错!"), g_appInfoPtr->m_answerWidget);
- myDebug() << QString::fromLocal8Bit("解析答案出错!");
- }
- QString sAnswer = "";
- int nSize = jAnswer["sections"].size();
- for(int i = 0; i < nSize; ++i)
- {
- int bSize = jAnswer["sections"][i]["blocks"].size();
- for(int j = 0; j < bSize; ++j)
- {
- if(jAnswer["sections"][i]["blocks"][j]["type"] == "text")
- {
- sAnswer += jAnswer["sections"][i]["blocks"][j]["value"].asString().c_str();
- }
- }
- }
- m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k].sStudentAnswer = sAnswer;
- }
- if (aq.bIsAnswer)
- {
- nAnswered++;
- }
- if (aq.bIsSign)
- {
- nMarked++;
- }
- if (!aq.sAudioPlayTimes.isEmpty())
- {
- Json::Reader reader;
- Json::Value jAudioPlayTimes = Json::Value::null;
- if (reader.parse(aq.sAudioPlayTimes.toStdString(), jAudioPlayTimes))
- {
- for (int ja = 0; ja < jAudioPlayTimes.size(); ++ja)
- {
- Json::Value jAudioPlayItem = jAudioPlayTimes[ja];
- g_appInfoPtr->m_jAudioPlayedCount[jAudioPlayItem["name"].asString()] = jAudioPlayItem["times"].asInt();
- }
- }
- }
- }
- }
- }
- showQuestionByOrder(1);
- on_btn_all_clicked();
- ui->btn_allNum->setText(QString::number(nTotal));
- ui->btn_answeredNum->setText(QString::number(nAnswered));
- ui->btn_markedNum->setText(QString::number(nMarked));
- ui->btn_unansweredNum->setText(QString::number(nTotal - nAnswered));
- ui->pgb_answerProgress->setMaximum(nTotal);
- ui->pgb_answerProgress->setValue(nAnswered);
- refreshStatus();
- //开始答题
- startAnwer();
- }
- else
- {
- // if(findExamQuestionList.sMessage.isEmpty())
- // {
- // ShowMsg(QString::fromLocal8Bit("获取题目信息出错"), g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- // else
- // {
- // ShowMsg(findExamQuestionList.sMessage, g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- if(++m_nRetryCount > 3)
- {
- //退出
- exitExamTip();
- }
- else
- {
- FindExamQuestionList();
- }
- }
- }
- void answerWidget::startAnwer()
- {
- CHttpRequestPackage hrp1;
- hrp1.sUri = "/api/ecs_oe_student/client/exam/process/startAnswer";
- hrp1.sParamList.push_back(QString("examRecordDataId,%1").arg(g_appInfoPtr->m_oExamInfo.nExamRecordDataId));
- hrp1.nRequestType = RequestType::rtStartAnswer;
- hrp1.eParamType = HttpParamType::hptUrl;
- g_httpBllPtr->post(hrp1);
- }
- void answerWidget::onGetExamProperty(CGetExamProperty getExamProperty)
- {
- if (getExamProperty.nCode == 200)
- {
- m_nRetryCount = 0;
- if (getExamProperty.sType == "SNAPSHOT_INTERVAL,PRACTICE_TYPE,FREEZE_TIME,SHOW_MULTIPLE_CHOICE_WARNING")
- {
- m_nSnapshotInterval = getExamProperty.nSnapshotInterval;
- g_appInfoPtr->m_oExamInfo.sPracticeType = getExamProperty.sPracticeType;
- m_nFreezeTime = getExamProperty.nFreezeTime;
- g_appInfoPtr->m_bMutipleAnserCountTips = getExamProperty.bMutipleAnserCountTips;
- }
- GetExamById();
- }
- else
- {
- // if(getExamProperty.sMessage.isEmpty())
- // {
- // ShowMsg(QString::fromLocal8Bit("获取考试信息出错"), g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- // else
- // {
- // ShowMsg(getExamProperty.sMessage, g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- if(++m_nRetryCount > 3)
- {
- //退出
- exitExamTip();
- }
- else
- {
- GetExamProperty();
- }
- }
- }
- void answerWidget::onWeiXinAnswerEnabled(CWeiXinAnswerEnabled weiXinAnswerEnabled)
- {
- if (weiXinAnswerEnabled.nCode == 200)
- {
- m_nRetryCount = 0;
- g_appInfoPtr->m_bWeiXinAnswerEnabled = weiXinAnswerEnabled.bEnabled;
- FindExamQuestionList();
- }
- else
- {
- // if(weiXinAnswerEnabled.sMessage.isEmpty())
- // {
- // ShowMsg(QString::fromLocal8Bit("获取考试信息失败"), g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- // else
- // {
- // ShowMsg(weiXinAnswerEnabled.sMessage, g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- if(++m_nRetryCount > 3)
- {
- //退出
- exitExamTip();
- }
- else
- {
- WeiXinAnswerEnabled();
- }
- }
- }
- void answerWidget::showSubQuestion(CQuestionStruct &qs, int nOrder, QString sTitle, QString sProgress)
- {
- if (qs.sBody.isEmpty())
- {
- if (m_pQuestion != nullptr)
- {
- m_pQuestion.reset();
- }
- if (m_pQuestionSet != nullptr)
- {
- m_pQuestionSet.reset();
- }
- m_pQuestion = std::make_shared<question>(qs, nOrder, ui->btn_allNum->text().toInt(), ui->widget_aw_answerBG);
- connect(m_pQuestion.get(), &question::uploadAnswer, this, [&](int nIndex, __int64 timeStamp, QString sAnswer){
- uploadAnswer(nIndex, sAnswer);
- });
- connect(m_pQuestion.get(), &question::questionAnswered, this, [&](bool bAnswered, int nIndex){
- refreshStatus();
- int nSize = m_vPaperGroupStruct.size();
- for (int i = 0; i < nSize; ++i)
- {
- int nQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct.size();
- for (int j = 0; j < nQuestionSize; ++j)
- {
- int nSubQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct.size();
- for (int k = 0; k < nSubQuestionSize; ++k)
- {
- CSubQuestionStruct sqs = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k];
- if(sqs.nOrder == nIndex)
- {
- QString sGroupProgressText = QString::fromLocal8Bit("完成进度(%1/%2)").arg(m_vPaperGroupStruct[i].nAnsweredCount).arg(m_vPaperGroupStruct[i].nTotalSubquestion);
- m_pQuestion->setGroupInfo("", sGroupProgressText);
- break;
- }
- }
- }
- }
- });
- connect(m_pQuestion.get(), &question::markedItem, this, [&](bool bMarked, int nIndex){
- refreshStatus();
- });
- connect(m_pQuestion.get(), &question::previousQuestion, this, [&](int nOrder){
- if(nOrder > 1)
- {
- showQuestionByOrder(nOrder - 1);
- }
- });
- connect(m_pQuestion.get(), &question::nextQuestion, this, [&](int nOrder){
- showQuestionByOrder(nOrder + 1);
- });
- m_pQuestion->setGroupInfo(sTitle, sProgress);
- m_pQuestion->setUI(0, g_appInfoPtr->m_fRate * 86,
- ui->widget_aw_answerBG->width(), ui->widget_aw_answerBG->height() - g_appInfoPtr->m_fRate * (86 + 20));
- m_pQuestion->show();
- }
- else
- {
- if (m_pQuestion != nullptr)
- {
- m_pQuestion.reset();
- }
- if (m_pQuestionSet != nullptr)
- {
- m_pQuestionSet.reset();
- }
- m_pQuestionSet = std::make_shared<questionSet>(qs, nOrder, ui->btn_allNum->text().toInt(), ui->widget_aw_answerBG);
- connect(m_pQuestionSet.get(), &questionSet::uploadAnswer, this, [&](int nIndex, __int64 timeStamp, QString sAnswer){
- uploadAnswer(nIndex, sAnswer);
- });
- connect(m_pQuestionSet.get(), &questionSet::questionAnswered, this, [&](bool bAnswered, int nIndex){
- refreshStatus();
- int nSize = m_vPaperGroupStruct.size();
- for (int i = 0; i < nSize; ++i)
- {
- int nQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct.size();
- for (int j = 0; j < nQuestionSize; ++j)
- {
- int nSubQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct.size();
- for (int k = 0; k < nSubQuestionSize; ++k)
- {
- CSubQuestionStruct sqs = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k];
- if(sqs.nOrder == nIndex)
- {
- QString sGroupProgressText = QString::fromLocal8Bit("完成进度(%1/%2)").arg(m_vPaperGroupStruct[i].nAnsweredCount).arg(m_vPaperGroupStruct[i].nTotalSubquestion);
- m_pQuestionSet->setGroupInfo("", sGroupProgressText);
- break;
- }
- }
- }
- }
- });
- connect(m_pQuestionSet.get(), &questionSet::markedItem, this, [&](bool bMarked, int nIndex){
- refreshStatus();
- });
- connect(m_pQuestionSet.get(), &questionSet::previousQuestion, this, [&](int nOrder){
- if(nOrder > 1)
- {
- showQuestionByOrder(nOrder - 1);
- }
- });
- connect(m_pQuestionSet.get(), &questionSet::nextQuestion, this, [&](int nOrder){
- showQuestionByOrder(nOrder + 1);
- });
- m_pQuestionSet->setGroupInfo(sTitle, sProgress);
- m_pQuestionSet->setUI(0, g_appInfoPtr->m_fRate * 86,
- ui->widget_aw_answerBG->width(), ui->widget_aw_answerBG->height() - g_appInfoPtr->m_fRate * (86 + 20));
- m_pQuestionSet->show();
- }
- }
- void answerWidget::refreshStatus()
- {
- int nCount = ui->lw_aw_questionList->count();
- for(int i = 0; i < nCount; ++i)
- {
- awQuestionNavigate *questionItem = dynamic_cast<awQuestionNavigate*>(ui->lw_aw_questionList->itemWidget(ui->lw_aw_questionList->item(i)));
- if(questionItem)
- {
- questionItem->refreshStatus();
- }
- }
- int nTotal = 0;
- int nAnswered = 0;
- int nMarked = 0;
- int nSize = m_vPaperGroupStruct.size();
- for (int i = 0; i < nSize; ++i)
- {
- int nQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct.size();
- int nAnswerCount = 0;
- for (int j = 0; j < nQuestionSize; ++j)
- {
- int nSubQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct.size();
- for (int k = 0; k < nSubQuestionSize; ++k)
- {
- CSubQuestionStruct sqs = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k];
- nTotal++;
- if (sqs.bAnswered)
- {
- nAnswerCount++;
- nAnswered++;
- }
- if (sqs.bMarked)
- {
- nMarked++;
- }
- }
- }
- m_vPaperGroupStruct[i].nAnsweredCount = nAnswerCount;
- }
- ui->btn_allNum->setText(QString::number(nTotal));
- ui->btn_answeredNum->setText(QString::number(nAnswered));
- ui->btn_markedNum->setText(QString::number(nMarked));
- ui->btn_unansweredNum->setText(QString::number(nTotal - nAnswered));
- ui->pgb_answerProgress->setMaximum(nTotal);
- ui->pgb_answerProgress->setValue(nAnswered);
- }
- void answerWidget::showQuestionByOrder(int nOrder)
- {
- int nSize = m_vPaperGroupStruct.size();
- if(g_appInfoPtr->m_bMutipleAnserCountTips)
- {
- for (int i = 0; i < nSize; ++i)
- {
- int nQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct.size();
- for (int j = 0; j < nQuestionSize; ++j)
- {
- int nSubQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct.size();
- for (int k = 0; k < nSubQuestionSize; ++k)
- {
- CSubQuestionStruct sqs = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k];
- int n = sqs.sStudentAnswer.length();
- if (sqs.bCurrent && sqs.sQuestionType == QUESTION_TYPE::MultipleChoice && sqs.sStudentAnswer.length() < 2 && sqs.sStudentAnswer.length() > 0)
- {
- if(popMsg(QString::fromLocal8Bit("当前多选题所选答案不足2个,是否确认跳过?"), QString::fromLocal8Bit("系统提示"), this,
- QString::fromLocal8Bit("跳过此题"), QString::fromLocal8Bit("继续作答")) != QDialog::Accepted)
- {
- QString sGroupTitleText = QString::fromLocal8Bit("%1、%2 (共%3题)").arg(CCommonTools::Arab2Sinogram(m_vPaperGroupStruct[i].nNumber)).arg(m_vPaperGroupStruct[i].sGroupName).arg(m_vPaperGroupStruct[i].nTotalSubquestion);
- QString sGroupProgressText = QString::fromLocal8Bit("完成进度(%1/%2)").arg(m_vPaperGroupStruct[i].nAnsweredCount).arg(m_vPaperGroupStruct[i].nTotalSubquestion);
- showSubQuestion(m_vPaperGroupStruct[i].vQuestionStruct[j], sqs.nOrder, sGroupTitleText, sGroupProgressText);
- refreshStatus();
- return;
- }
- }
- }
- }
- }
- }
- for (int i = 0; i < nSize; ++i)
- {
- int nQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct.size();
- for (int j = 0; j < nQuestionSize; ++j)
- {
- int nSubQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct.size();
- bool bHasContent = m_vPaperGroupStruct[i].vQuestionStruct[j].bHasContent;
- for (int k = 0; k < nSubQuestionSize; ++k)
- {
- CSubQuestionStruct &sqs = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k];
- sqs.bCurrent = false;
- if(sqs.nOrder == nOrder)
- {
- sqs.bCurrent = true;
- if (bHasContent)
- {
- QString sGroupTitleText = QString::fromLocal8Bit("%1、%2 (共%3题)").arg(CCommonTools::Arab2Sinogram(m_vPaperGroupStruct[i].nNumber)).arg(m_vPaperGroupStruct[i].sGroupName).arg(m_vPaperGroupStruct[i].nTotalSubquestion);
- QString sGroupProgressText = QString::fromLocal8Bit("完成进度(%1/%2)").arg(m_vPaperGroupStruct[i].nAnsweredCount).arg(m_vPaperGroupStruct[i].nTotalSubquestion);
- showSubQuestion(m_vPaperGroupStruct[i].vQuestionStruct[j], nOrder, sGroupTitleText, sGroupProgressText);
- }
- else
- {
- getQuestionContent(m_vPaperGroupStruct[i].vQuestionStruct[j].sQuestionId, nOrder);
- }
- }
- }
- }
- }
- refreshStatus();
- }
- void answerWidget::uploadAnswer(int nIndex, QString sAnswer)
- {
- int nSize = m_vPaperGroupStruct.size();
- for (int i = 0; i < nSize; ++i)
- {
- int nQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct.size();
- for (int j = 0; j < nQuestionSize; ++j)
- {
- int nSubQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct.size();
- for (int k = 0; k < nSubQuestionSize; ++k)
- {
- CSubQuestionStruct sqs = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k];
- if(!sqs.bUpload)
- {
- CHttpRequestPackage hrp;
- hrp.sUri = QString("/api/ecs_oe_student/client/exam/process/submitQuestionAnswer");
- hrp.nRequestType = RequestType::rtSubmitQuestionAnswer;
- hrp.eParamType = HttpParamType::hptCustomBody;
- hrp.sParamList.push_back(QString("CustomBody,%1").arg(sAnswer));
- hrp.sCommonStr = QString("%1,%2").arg(sqs.nOrder).arg(sqs.nVersion);
- g_httpBllPtr->post(hrp);
- }
- }
- }
- }
- }
- void answerWidget::onSubmitQuestionAnswer(CSubmitQuestionAnswer submitQuestionAnswer)
- {
- if(submitQuestionAnswer.nCode == 200)
- {
- int nSize = m_vPaperGroupStruct.size();
- for (int i = 0; i < nSize; ++i)
- {
- int nQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct.size();
- for (int j = 0; j < nQuestionSize; ++j)
- {
- int nSubQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct.size();
- for (int k = 0; k < nSubQuestionSize; ++k)
- {
- CSubQuestionStruct &sqs = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k];
- if(sqs.nOrder == submitQuestionAnswer.nOrder &&
- submitQuestionAnswer.nVersion >= sqs.nVersion)
- {
- sqs.bUpload = true;
- break;
- }
- }
- }
- }
- }
- else
- {
- if(submitQuestionAnswer.sMessage.isEmpty())
- {
- ShowMsg(QString::fromLocal8Bit("提交答案失败"), g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- }
- else
- {
- ShowMsg(submitQuestionAnswer.sMessage, g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- }
- }
- }
- void answerWidget::getQuestionContent(QString sQuestionId, int nOrder)
- {
- CHttpRequestPackage hrp;
- hrp.sUri = QString("/api/ecs_oe_student/client/exam/process/getQuestionContent")
- .arg(g_appInfoPtr->m_oExamInfo.nExamId);
- hrp.nRequestType = RequestType::rtGetQuestionContent;
- hrp.eParamType = HttpParamType::hptUrl;
- hrp.sCommonStr = sQuestionId + "," + QString::number(nOrder);
- hrp.sParamList.push_back(QString("questionId,%1").arg(sQuestionId));
- g_httpBllPtr->post(hrp);
- }
- void answerWidget::onGetQuestionContent(CGetQuestionContent getQuestionContent)
- {
- if (getQuestionContent.nCode == 200)
- {
- for (CPaperGroupStruct &pgs : m_vPaperGroupStruct)
- {
- for (CQuestionStruct &qs : pgs.vQuestionStruct)
- {
- if (qs.sQuestionId == getQuestionContent.sQuestionId)
- {
- qs.sBody = getQuestionContent.sBody;
- qs.sVersion = getQuestionContent.sVersion;
- qs.bhasAudios = getQuestionContent.bhasAudios;
- for (int i = 0; i < getQuestionContent.vSubQuestion.size(); ++i)
- {
- CSubQuestion sq = getQuestionContent.vSubQuestion[i];
- qs.vSubQuestionStruct[i].sBody = sq.sBody;
- qs.vSubQuestionStruct[i].vRightAnswer.swap(sq.vRightAnswer);
- qs.vSubQuestionStruct[i].vOptions.swap(sq.vOptions);
- }
- QString sGroupTitleText = QString::fromLocal8Bit("%1、%2 (共%3题)").arg(CCommonTools::Arab2Sinogram(pgs.nNumber)).arg(pgs.sGroupName).arg(pgs.nTotalSubquestion);
- QString sGroupProgressText = QString::fromLocal8Bit("完成进度(%1/%2)").arg(pgs.nAnsweredCount).arg(pgs.nTotalSubquestion);
- showSubQuestion(qs, getQuestionContent.sOrder.toInt(), sGroupTitleText, sGroupProgressText);
- break;
- }
- }
- }
- }
- else
- {
- if(getQuestionContent.sMessage.isEmpty())
- {
- ShowMsg(QString::fromLocal8Bit("获取题目内容失败"), g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- }
- else
- {
- ShowMsg(getQuestionContent.sMessage, g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- }
- }
- }
- void answerWidget::onStartAnswer(CStartAnswer startAnswer)
- {
- if(startAnswer.nCode == 200)
- {
- m_nRetryCount = 0;
- m_nUsedExamSeconds = startAnswer.nUsedExamSeconds;
- m_pHeartbeatTimer->start();
- heartBreat();
- //获取活体参数
- if (g_appInfoPtr->m_oExamInfo.bLivenessCheck)
- {
- StartFaceLiveVerify();
- // GetOrgPropertiesByGroupWithoutCache();
- // CHttpRequestPackage hrp;
- // hrp.sUri = QString("/api/ecs_core/org/getOrgPropertiesByGroupWithoutCache/%1/config4Edit1")
- // .arg(g_appInfoPtr->m_sRootOrgId);
- // hrp.nRequestType = RequestType::rtGetOrgPropertiesByGroupWithoutCache;
- // g_httpBllPtr->get(hrp);
- {
- // CHttpRequestPackage hrp;
- // hrp.sUri = QString("/api/ecs_oe_student/client/exam/process/startFaceLiveVerify")
- // .arg(g_appInfoPtr->m_sRootOrgId);
- // hrp.nRequestType = RequestType::rtStartFaceLiveVerify;
- // hrp.sParamList.push_back(QString("examRecordDataId,%1").arg(g_appInfoPtr->m_oExamInfo.nExamRecordDataId));
- // hrp.eParamType = HttpParamType::hptUrl;
- // g_httpBllPtr->post(hrp);
- }
- }
- }
- else
- {
- // if(startAnswer.sMessage.isEmpty())
- // {
- // ShowMsg(QString::fromLocal8Bit("开始作答失败"), g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- // else
- // {
- // ShowMsg(startAnswer.sMessage, g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- if(++m_nRetryCount > 3)
- {
- //退出
- exitExamTip();
- }
- else
- {
- startAnwer();
- }
- }
- }
- void answerWidget::GetOrgPropertiesByGroupWithoutCache()
- {
- CHttpRequestPackage hrp;
- hrp.sUri = QString("/api/ecs_core/org/getOrgPropertiesByGroupWithoutCache/%1/config4Edit1")
- .arg(g_appInfoPtr->m_sRootOrgId);
- hrp.nRequestType = RequestType::rtGetOrgPropertiesByGroupWithoutCache;
- g_httpBllPtr->get(hrp);
- }
- void answerWidget::onGetOrgPropertiesByGroupWithoutCache(CGetOrgPropertiesByGroupWithoutCache orgProperties)
- {
- if(orgProperties.nCode == 200)
- {
- m_nRetryCount = 0;
- g_appInfoPtr->m_oExamInfo.nActionNum = orgProperties.nActionNum;
- g_appInfoPtr->m_oExamInfo.sActionOptions = orgProperties.sActionOptions;
- g_appInfoPtr->m_oExamInfo.sActionOrder = orgProperties.sActionOrder;
- g_appInfoPtr->m_oExamInfo.nActionDuration = orgProperties.nActionDuration;
- g_appInfoPtr->m_oExamInfo.nActionAlert = orgProperties.nActionAlert;
- g_appInfoPtr->m_oExamInfo.nFaceThreshold = orgProperties.nFaceThreshold;
- StartFaceLiveVerify();
- }
- else
- {
- // if(orgProperties.sMessage.isEmpty())
- // {
- // ShowMsg(QString::fromLocal8Bit("获取考试信息失败"), g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- // else
- // {
- // ShowMsg(orgProperties.sMessage, g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- if(++m_nRetryCount > 3)
- {
- //退出
- exitExamTip();
- }
- else
- {
- GetOrgPropertiesByGroupWithoutCache();
- }
- }
- }
- void answerWidget::StartFaceLiveVerify()
- {
- CHttpRequestPackage hrp;
- hrp.sUri = QString("/api/ecs_oe_student/client/exam/process/startFaceLiveVerify")
- .arg(g_appInfoPtr->m_sRootOrgId);
- hrp.nRequestType = RequestType::rtStartFaceLiveVerify;
- hrp.sParamList.push_back(QString("examRecordDataId,%1").arg(g_appInfoPtr->m_oExamInfo.nExamRecordDataId));
- hrp.eParamType = HttpParamType::hptUrl;
- g_httpBllPtr->post(hrp);
- }
- void answerWidget::onStartFaceLiveVerify(CStartFaceLiveVerify startFaceLiveVerify)
- {
- if(startFaceLiveVerify.nCode == 200)
- {
- m_nRetryCount = 0;
- g_appInfoPtr->m_oExamInfo.nFaceLiveVerifyId = startFaceLiveVerify.nFaceLiveVerifyId;
- g_appInfoPtr->m_oExamInfo.nFaceVerifyTimes = startFaceLiveVerify.nTimes;
- g_appInfoPtr->m_oExamInfo.nFaceVerifyDoMinute = startFaceLiveVerify.nStartMinute;
- bShowLivenessTip = true;
- }
- else
- {
- // if(startFaceLiveVerify.sMessage.isEmpty())
- // {
- // ShowMsg(QString::fromLocal8Bit("开启活体验证失败"), g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- // else
- // {
- // ShowMsg(startFaceLiveVerify.sMessage, g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- // }
- if(++m_nRetryCount > 3)
- {
- //退出
- exitExamTip();
- }
- else
- {
- StartFaceLiveVerify();
- }
- }
- }
- void answerWidget::heartBreat()
- {
- CHttpRequestPackage hrp;
- hrp.sUri = QString("/api/ecs_oe_student/client/exam/process/examHeartbeat");
- hrp.nRequestType = RequestType::rtExamHeartbeat;
- hrp.nRetryCount = 0;
- g_httpBllPtr->post(hrp);
- }
- void answerWidget::onExamHeartbeat(CExamHeartbeat examHeartbeat)
- {
- if (examHeartbeat.nCode == 200)
- {
- if(m_nHeartBreatFailedCount > 0)
- {
- //m_pHeartbeatTimer->stop();
- m_pHeartbeatTimer->setInterval(60 * 1000);
- //m_pHeartbeatTimer->start();
- m_nHeartBreatFailedCount = 0;
- }
-
- m_nLeftSeconds = examHeartbeat.nLeftTime/1000;
- if(m_nEnterExamTime == 0)
- {
- m_nEnterExamTime = m_nLeftSeconds;
- }
- m_pCountDownTimer->start();
-
- //过程中人脸识别
- if(g_appInfoPtr->m_oExamInfo.bFaceCheck)
- {
- if(g_inProcessFace == nullptr)
- {
- g_inProcessFace = std::make_shared<CInprogressFace>();
- connect(g_inProcessFace.get(), &CInprogressFace::compareFailed, this, [&](QString sErrorMsg){
- ShowMsg(sErrorMsg, g_appInfoPtr->m_pAnsBgWidget);
- });
- startCapture();
- }
- m_nNextFaceCountSecond = m_nLeftSeconds - CCommonTools::genRandomNumber(1, 10);
- }
- }
- else
- {
- if(m_nHeartBreatFailedCount == 0)
- {
- // m_pHeartbeatTimer->stop();
- m_pHeartbeatTimer->setInterval(10 * 1000);
- //m_pHeartbeatTimer->start();
- }
- ++m_nHeartBreatFailedCount;
-
- if (m_nHeartBreatFailedCount >= m_nHeartBreatFailedExitCount)
- {
- exitExamTip();
- //退出
- // awTimeLeftTips *wExitExam = new awTimeLeftTips(MASK_POP_WIDGET_TYPE::wt_exitExam, (QWidget*)(this->parent()));
- // connect(wExitExam, &awTimeLeftTips::timeLeftConfirm, this, [this, wExitExam]() {
- // if (m_pNetWorkErrorTimerPtr)
- // {
- // m_pNetWorkErrorTimerPtr->stop();
- // }
- // delete wExitExam;
- // emit gobackLogin();
- // });
- // wExitExam->show();
- // if (m_pNetWorkErrorTimerPtr == nullptr)
- // {
- // m_pNetWorkErrorTimerPtr = std::make_shared<QTimer>();
- // m_pNetWorkErrorTimerPtr->setInterval(30 * 1000);
- // connect(m_pNetWorkErrorTimerPtr.get(), &QTimer::timeout, [this, wExitExam]() {
- // m_pNetWorkErrorTimerPtr->stop();
- // delete wExitExam;
- // emit gobackLogin();
- // });
- // }
- // m_pNetWorkErrorTimerPtr->start();
-
- }
- if(examHeartbeat.sMessage.isEmpty())
- {
- ShowMsg(QString::fromLocal8Bit("网络连接异常,请检查网络设置"), g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- }
- else
- {
- ShowMsg(examHeartbeat.sMessage, g_appInfoPtr->m_pAnsBgWidget, MSG_ICON_TYPE::mit_error);
- }
- }
- }
- void answerWidget::exitExamTip()
- {
- //退出
- awTimeLeftTips *wExitExam = new awTimeLeftTips(MASK_POP_WIDGET_TYPE::wt_exitExam, (QWidget*)(this->parent()));
- connect(wExitExam, &awTimeLeftTips::timeLeftConfirm, this, [this, wExitExam]() {
- if (m_pNetWorkErrorTimerPtr)
- {
- m_pNetWorkErrorTimerPtr->stop();
- }
- delete wExitExam;
- emit gobackLogin();
- });
- wExitExam->show();
- if (m_pNetWorkErrorTimerPtr == nullptr)
- {
- m_pNetWorkErrorTimerPtr = std::make_shared<QTimer>();
- m_pNetWorkErrorTimerPtr->setInterval(30 * 1000);
- connect(m_pNetWorkErrorTimerPtr.get(), &QTimer::timeout, [this, wExitExam]() {
- m_pNetWorkErrorTimerPtr->stop();
- delete wExitExam;
- emit gobackLogin();
- });
- }
- m_pNetWorkErrorTimerPtr->start();
- }
- bool answerWidget::allMutipleQuestionHas2Answers()
- {
- int nSize = m_vPaperGroupStruct.size();
- for (int i = 0; i < nSize; ++i)
- {
- int nQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct.size();
- for (int j = 0; j < nQuestionSize; ++j)
- {
- int nSubQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct.size();
- for (int k = 0; k < nSubQuestionSize; ++k)
- {
- CSubQuestionStruct sqs = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k];
- if (sqs.sQuestionType == QUESTION_TYPE::MultipleChoice && sqs.sStudentAnswer.length() < 2)
- {
- return false;
- }
- }
- }
- }
- return true;
- }
- void answerWidget::onExamControlCheckTime(CBaseResponsePackage res)
- {
- if(res.nCode == 200)
- {
- if(m_pHandinPaper == nullptr)
- {
- m_pHandinPaper = std::make_shared<awHandinPaper>(ui->btn_answeredNum->text().toInt(),
- ui->btn_unansweredNum->text().toInt(),
- ui->btn_markedNum->text().toInt(), (QWidget*)(this->parent()));
- connect(m_pHandinPaper.get(), &awHandinPaper::handinPaper, this, [&](){
- m_pHandinPaper.reset();
- //交卷
- handinPaper();
- });
- connect(m_pHandinPaper.get(), &awHandinPaper::cancelHandinPaper, this, [&](){
- m_pHandinPaper.reset();
- });
- }
- if(g_appInfoPtr->m_bMutipleAnserCountTips)
- {
- if(!allMutipleQuestionHas2Answers())
- {
- m_pHandinPaper->showMutipleChoiceTip();
- }
- }
- m_pHandinPaper->show();
- }
- else
- {
- if(res.sMessage.isEmpty())
- {
- res.sMessage = QString::fromLocal8Bit("交卷时间检查失败");
- }
- ShowMsg(res.sMessage, this);
- }
- }
- void answerWidget::on_btn_handInPaper_clicked()
- {
- // if(m_nFreezeTime*60 > m_nUsedExamSeconds + m_nEnterExamTime - m_nLeftSeconds)
- // {
- // ShowMsg(QString::fromLocal8Bit("冻结时间内不允许交卷"), this, MSG_ICON_TYPE::mit_error);
- // return;
- // }
- ui->btn_handInPaper->setEnabled(false);
- CHttpRequestPackage hrp;
- hrp.sUri = QString("/api/ecs_oe_student/examControl/check/time");
- hrp.nRequestType = RequestType::rtExamControlCheckTime;
- g_httpBllPtr->post(hrp);
- QTimer::singleShot(3000, this, [&](){
- ui->btn_handInPaper->setEnabled(true);
- });
- }
- bool answerWidget::checkAnswer()
- {
- bool bRet = true;
- int nSize = m_vPaperGroupStruct.size();
- for (int i = 0; i < nSize; ++i)
- {
- int nQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct.size();
- for (int j = 0; j < nQuestionSize; ++j)
- {
- int nSubQuestionSize = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct.size();
- for (int k = 0; k < nSubQuestionSize; ++k)
- {
- CSubQuestionStruct sqs = m_vPaperGroupStruct[i].vQuestionStruct[j].vSubQuestionStruct[k];
- if (!sqs.bUpload)
- {
- bRet = false;
- CHttpRequestPackage hrp;
- hrp.sUri = QString("/api/ecs_oe_student/client/exam/process/submitQuestionAnswer");
- hrp.nRequestType = RequestType::rtSubmitQuestionAnswer;
- hrp.eParamType = HttpParamType::hptCustomBody;
- hrp.sParamList.push_back(QString("CustomBody,%1").arg(sqs.sUploadAnswer));
- hrp.sCommonStr = QString("%1,%2").arg(sqs.nOrder).arg(sqs.nVersion);
- g_httpBllPtr->post(hrp);
- }
- }
- }
- }
- return bRet;
- }
- void answerWidget::handinPaper(bool bForce)
- {
- m_pCountDownTimer->stop();
- if(g_appInfoPtr->m_oExamInfo.bFaceCheck)
- {
- stopCapture();
- }
- if(g_inProcessFace != nullptr)
- {
- stopCapture();
- g_inProcessFace.reset();
- }
- if(m_pResumeExam == nullptr)
- {
- m_pResumeExam = std::make_shared<awResumeExam>((QWidget*)(this->parent()), QString::fromLocal8Bit("交卷中请稍候…"));
- }
- m_pResumeExam->show();
- if (checkAnswer())
- {
- // CHttpRequestPackage hrp;
- // hrp.sUri = QString("/api/ecs_oe_student/client/exam/process/endExam");
- // hrp.sCommonStr = __FILE__;
- // hrp.nRequestType = RequestType::rtEndExam;
- // g_httpBllPtr->post(hrp);
- doEndExam(bForce);
- }
- else
- {
- if (m_pHandinPaperTimer == nullptr)
- {
- m_pHandinPaperTimer = std::make_shared<QTimer>();
- m_pHandinPaperTimer->setInterval(10 * 1000);
- connect(m_pHandinPaperTimer.get(), &QTimer::timeout, this, [&]() {
- if (checkAnswer())
- {
- m_pHandinPaperTimer->stop();
- doEndExam(bForce);
- // CHttpRequestPackage hrp;
- // hrp.sUri = QString("/api/ecs_oe_student/client/exam/process/endExam");
- // hrp.sCommonStr = __FILE__;
- // hrp.nRequestType = RequestType::rtEndExam;
- // g_httpBllPtr->post(hrp);
- }
- });
- }
- }
- }
- void answerWidget::doEndExam(bool bForce)
- {
- CHttpRequestPackage hrp;
- hrp.sUri = QString("/api/ecs_oe_student/client/exam/process/endExam");
- if(bForce)
- {
- hrp.sParamList.push_back(QString("force,%1").arg(bForce));
- hrp.eParamType = HttpParamType::hptUrl;
- }
- hrp.sCommonStr = __FILE__;
- hrp.sAdditionStr = bForce ? "1" : "0";
- hrp.nRequestType = RequestType::rtEndExam;
- g_httpBllPtr->post(hrp);
- }
- void answerWidget::onEndExam(CEndExam endExam)
- {
- if(endExam.sModuleName == __FILE__)
- {
- if (endExam.nCode == 200)
- {
- m_pHeartbeatTimer->stop();
- m_pResumeExam.reset();
- if (g_appInfoPtr->m_oExamInfo.sExamType == EXAM_TYPES::PRACTICE)
- {
- if(g_appInfoPtr->m_oExamInfo.sPracticeType != "NO_ANSWER")
- {
- emit showPracticeInfo();
- }
- else
- {
- emit gobackCourseList();
- }
- }
- else
- {
- emit showExamScore();
- }
- }
- else
- {
- QTimer::singleShot(5*1000, this, [&](){
- // CHttpRequestPackage hrp;
- // hrp.sUri = QString("/api/ecs_oe_student/client/exam/process/endExam");
- // hrp.sCommonStr = __FILE__;
- // hrp.nRequestType = RequestType::rtEndExam;
- // g_httpBllPtr->post(hrp);
- doEndExam(endExam.bForce);
- });
- }
- }
- }
- void answerWidget::on_btn_all_clicked()
- {
- int nCount = ui->lw_aw_questionList->count();
- for(int i = 0; i < nCount; ++i)
- {
- awQuestionNavigate *questionItem = dynamic_cast<awQuestionNavigate*>(ui->lw_aw_questionList->itemWidget(ui->lw_aw_questionList->item(i)));
- if(questionItem)
- {
- int nHeight = questionItem->setShowType(ITEM_SHOW_TYPE::ist_showAll);
- QListWidgetItem *listItem = ui->lw_aw_questionList->item(i);
- if(listItem)
- {
- QSize size = listItem->sizeHint();
- size.setHeight(nHeight);
- listItem->setSizeHint(size);
- }
- }
- }
- setChecked(ui->btn_all, true);
- setChecked(ui->btn_marked, false);
- setChecked(ui->btn_answered, false);
- setChecked(ui->btn_unanswered, false);
- }
- void answerWidget::setChecked(QPushButton *btn, bool bChecked)
- {
- QString sNormal = QString(R"(QPushButton
- {
- outline:none;
- background:rgba(242,243,247,1);
- border-radius:%1px;
- border:1px solid rgba(240,244,249,1);
- font-size:%2px;
- font-family:"Microsoft YaHei";
- font-weight:500;
- color:rgba(153,153,153,1);
- padding-left:%3px;
- text-align:left;
- })").arg((int)(g_appInfoPtr->m_fRate*14))
- .arg((int)(g_appInfoPtr->m_fRate*12))
- .arg((int)(g_appInfoPtr->m_fRate*15));
- QString sChecked = QString(R"(QPushButton
- {
- outline:none;
- background:rgba(242,243,247,1);
- border-radius:%1px;
- border:1px solid rgba(189,200,217,1);
- font-size:%2px;
- font-family:"Microsoft YaHei";
- font-weight:500;
- color:rgba(153,153,153,1);
- padding-left:%3px;
- text-align:left;
- })").arg((int)(g_appInfoPtr->m_fRate*14))
- .arg((int)(g_appInfoPtr->m_fRate*12))
- .arg((int)(g_appInfoPtr->m_fRate*15));
- btn->setStyleSheet(bChecked ? sChecked : sNormal);
- }
- void answerWidget::on_btn_answered_clicked()
- {
- int nCount = ui->lw_aw_questionList->count();
- for(int i = 0; i < nCount; ++i)
- {
- awQuestionNavigate *questionItem = dynamic_cast<awQuestionNavigate*>(ui->lw_aw_questionList->itemWidget(ui->lw_aw_questionList->item(i)));
- if(questionItem)
- {
- int nHeight = questionItem->setShowType(ITEM_SHOW_TYPE::ist_showAnswered);
- QListWidgetItem *listItem = ui->lw_aw_questionList->item(i);
- if(listItem)
- {
- QSize size = listItem->sizeHint();
- size.setHeight(nHeight);
- listItem->setSizeHint(size);
- }
- }
- }
- setChecked(ui->btn_all, false);
- setChecked(ui->btn_marked, false);
- setChecked(ui->btn_answered, true);
- setChecked(ui->btn_unanswered, false);
- }
- void answerWidget::on_btn_unanswered_clicked()
- {
- int nCount = ui->lw_aw_questionList->count();
- for(int i = 0; i < nCount; ++i)
- {
- awQuestionNavigate *questionItem = dynamic_cast<awQuestionNavigate*>(ui->lw_aw_questionList->itemWidget(ui->lw_aw_questionList->item(i)));
- if(questionItem)
- {
- int nHeight = questionItem->setShowType(ITEM_SHOW_TYPE::ist_showUnanswered);
- QListWidgetItem *listItem = ui->lw_aw_questionList->item(i);
- if(listItem)
- {
- QSize size = listItem->sizeHint();
- size.setHeight(nHeight);
- listItem->setSizeHint(size);
- }
- }
- }
- setChecked(ui->btn_all, false);
- setChecked(ui->btn_marked, false);
- setChecked(ui->btn_answered, false);
- setChecked(ui->btn_unanswered, true);
- }
- void answerWidget::on_btn_marked_clicked()
- {
- int nCount = ui->lw_aw_questionList->count();
- for(int i = 0; i < nCount; ++i)
- {
- awQuestionNavigate *questionItem = dynamic_cast<awQuestionNavigate*>(ui->lw_aw_questionList->itemWidget(ui->lw_aw_questionList->item(i)));
- if(questionItem)
- {
- int nHeight = questionItem->setShowType(ITEM_SHOW_TYPE::ist_showMarked);
- QListWidgetItem *listItem = ui->lw_aw_questionList->item(i);
- if(listItem)
- {
- QSize size = listItem->sizeHint();
- size.setHeight(nHeight);
- listItem->setSizeHint(size);
- }
- }
- }
- setChecked(ui->btn_all, false);
- setChecked(ui->btn_marked, true);
- setChecked(ui->btn_answered, false);
- setChecked(ui->btn_unanswered, false);
- }
- void answerWidget::on_btn_allNum_clicked()
- {
- on_btn_all_clicked();
- }
- void answerWidget::on_btn_answeredNum_clicked()
- {
- on_btn_answered_clicked();
- }
- void answerWidget::on_btn_unansweredNum_clicked()
- {
- on_btn_unanswered_clicked();
- }
- void answerWidget::on_btn_markedNum_clicked()
- {
- on_btn_marked_clicked();
- }
- void answerWidget::onRenderVideoFrame(const char* userId, TRTCVideoStreamType streamType, TRTCVideoFrame* frame)
- {
- if(g_clientVideoProcPtr->isCameraTest())
- {
- __int64 nServerTime = g_appInfoPtr->serverMTime();
- if(nServerTime - m_lastFaceTime >= 100)
- {
- m_lastFaceTime = nServerTime;
- cv::Mat matImg;
- cv::cvtColor(cv::Mat(frame->height, frame->width, CV_8UC4, frame->data), matImg, CV_RGBA2RGB);
- if(matImg.empty())
- {
- qDebug()<<"widgetCameraTest frame is empty";
- return;
- }
- std::scoped_lock lock(m_imageMutex);
- m_nCurImage = matImg;
- }
- }
- }
- void answerWidget::startCapture()
- {
- // if(m_pinitTimer == nullptr)
- // {
- // m_pinitTimer = std::make_shared<QTimer>();
- // m_pinitTimer->setInterval(1000);
- // connect(m_pinitTimer.get(), &QTimer::timeout, this, [&](){
- // m_pinitTimer->stop();
- // if(!m_cam.open(0))
- // {
- // ShowMsg(QString::fromLocal8Bit("打开摄像头失败"), this, MSG_ICON_TYPE::mit_error);
- // return;
- // }
- // int inWidth = ui->widget_aw_face->width();
- // m_cam.set(CV_CAP_PROP_FRAME_WIDTH, inWidth*3);
- // int inHeight = ui->widget_aw_face->height();
- // m_cam.set(CV_CAP_PROP_FRAME_HEIGHT, inHeight*3);
- // m_cam.set(CV_CAP_PROP_FPS, 5);
- // m_pVideoTimer->start();
- // });
- // }
- g_clientVideoProcPtr->startTest(this);
- g_inProcessFace->startFaceVerify(true);
- if(m_pVideoTimer == nullptr)
- {
- m_pVideoTimer = std::make_shared<QTimer>();
- m_pVideoTimer->setInterval(200);
- m_nLastCaptureSecond = m_nLeftSeconds;
- connect(m_pVideoTimer.get(), &QTimer::timeout, this, [&](){
- cv::Mat frame;
- {
- std::scoped_lock lock(m_imageMutex);
- frame = m_nCurImage;
- }
- if(frame.empty())
- {
- qDebug()<<"widgetCameraTest frame is empty";
- return;
- }
- if (g_inProcessFace != nullptr &&
- g_appInfoPtr->m_oExamInfo.bIsExamInProgress &&
- !m_bExamInpressFaceCaptured)
- {
- m_bExamInpressFaceCaptured = true;
- g_inProcessFace->addImage(frame);
- }
- if (g_inProcessFace != nullptr &&
- m_nLastCaptureSecond - m_nLeftSeconds > g_appInfoPtr->m_oExamInfo.nSnapshotInterval*60)
- {
- m_nLastCaptureSecond = m_nLeftSeconds;
- g_inProcessFace->addImage(frame);
- }
- if(g_inProcessFace != nullptr &&
- m_nNextFaceCountSecond > m_nLeftSeconds)
- {
- m_nNextFaceCountSecond = m_nLeftSeconds - CCommonTools::genRandomNumber(1, 10);
- g_inProcessFace->addFaceCountImage(frame);
- }
- QImage img = CCommonTools::Mat2QImage(frame);
- ui->widget_aw_face->setAutoFillBackground(true);
- QPalette palette;
- palette.setBrush(QPalette::Window, QBrush(img.scaled(ui->widget_aw_face->width(), ui->widget_aw_face->height())));
- ui->widget_aw_face->setPalette(palette);
- });
- }
- m_pVideoTimer->start();
- }
- void answerWidget::stopCapture()
- {
- m_pVideoTimer->stop();
- g_inProcessFace->startFaceVerify(false);
- g_clientVideoProcPtr->stopTest();
- // m_pVideoTimer->stop();
- // if(m_cam.isOpened())
- // {
- // m_cam.release();
- // }
- }
|