Files
Seth Hillbrand 2f866defd4 Don't clobber the original zones
We never set m_originalZoneList, so restoring from it was not going to
work.  Additionally, we shouldn't be using a COMMIT on a cloned zone
because it doesn't belong to the board.

Instead, keep a local variable for originalZones and restore from it
when done.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/22648
2026-01-05 10:19:21 -08:00

63 lines
2.3 KiB
C++

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2023 Ethan Chien <liangtie.qian@gmail.com>
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, you may find one here:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* or you may search the http://www.gnu.org website for the version 2 license,
* or you may write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#pragma once
#include "board.h"
#include <memory>
#include <unordered_map>
#include <vector>
#include <zone.h>
#include <zone_settings.h>
class ZONE_SETTINGS_BAG
{
public:
ZONE_SETTINGS_BAG( BOARD* aBoard );
ZONE_SETTINGS_BAG( ZONE* aZone, ZONE_SETTINGS* aSettings );
ZONE_SETTINGS_BAG() = default;
std::shared_ptr<ZONE_SETTINGS> GetZoneSettings( ZONE* aZone );
unsigned GetZonePriority( ZONE* aZone );
void SwapPriority( ZONE* aZOne, ZONE* otherZone );
/**
* The cloned list is the working storage.
*/
void UpdateClonedZones();
std::vector<ZONE*>& GetClonedZoneList() { return m_clonedZoneList; }
std::unordered_map<ZONE*, std::shared_ptr<ZONE>>& GetZonesCloneMap() { return m_zonesCloneMap; }
private:
std::unordered_map<ZONE*, std::shared_ptr<ZONE>> m_zonesCloneMap; // original : clone
std::unordered_map<ZONE*, std::shared_ptr<ZONE_SETTINGS>> m_zoneSettings; // clone : current settings
std::unordered_map<ZONE*, std::pair<unsigned, unsigned>> m_zonePriorities; // clone : initial pri, current pri
std::vector<ZONE*> m_clonedZoneList;
};