Skip to content
Snippets Groups Projects

Resolve "New type for doors"

Merged Ghost User requested to merge 307-temp-close into develop

Closes #307 (closed)

Merge request reports

Pipeline #18651 passed

Pipeline passed for 3b388897 on 307-temp-close

Merged by avatar (Jan 5, 2025 11:04pm UTC)

Loading

Pipeline #18659 passed

Pipeline passed for 499d57c1 on develop

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
741
742 for (TiXmlElement* xVertex = xPolyVertices->FirstChildElement(
743 "vertex");
744 xVertex && xVertex!=xPolyVertices->LastChild("vertex");
745 xVertex = xVertex->NextSiblingElement("vertex")) {
746
747 double x1 = xmltof(xVertex->Attribute("px"));
748 double y1 = xmltof(xVertex->Attribute("py"));
749 double x2 = xmltof(xVertex->NextSiblingElement("vertex")->Attribute("px"));
750 double y2 = xmltof(xVertex->NextSiblingElement("vertex")->Attribute("py"));
751 wa->AddWall(Wall(Point(x1, y1), Point(x2, y2)));
752 }
753 }
754
755 if (!waitingArea->ConvertLineToPoly()){
756 std::cout << "wa convertLineToPoly!";
  • Mohcine Chraibi
    Mohcine Chraibi @chraibi1 started a thread on commit b35a3449
  • 718 waitingArea->SetSubRoomID(subroom_id);
    719
    720 std::map<int, double> nextGoals;
    721
    722
    723 //looking for next_wa
    724 for (TiXmlElement* nextWa = e->FirstChildElement("next_wa"); nextWa;
    725 nextWa = nextWa->NextSiblingElement("next_wa")) {
    726 int nextWaId = xmltoi(nextWa->Attribute("id"));
    727 double nextWaP = xmltof(nextWa->Attribute("p"));
    728
    729 nextGoals.insert(std::pair<int, double>(nextWaId, nextWaP));
    730 }
    731
    732 if (!waitingArea->setNextGoals(nextGoals)){
    733 std::cout << "wa setNextGoals!";
  • A deleted user added KapaKrit label

    added KapaKrit label

  • merged

  • Ghost User mentioned in commit 499d57c1

    mentioned in commit 499d57c1

  • Please register or sign in to reply
    Loading