/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2020-2021 KiCad Developers. * * 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 */ #ifndef __PNS_LOG_PLAYER_H #define __PNS_LOG_PLAYER_H #include #include #include #include #include class PNS_TEST_DEBUG_DECORATOR; class PNS_LOG_FILE; class PNS_LOG_PLAYER; class PNS_LOG_VIEW_TRACKER { public: struct ENTRY { bool isHideOp; const PNS::ITEM* item; }; typedef std::vector VIEW_ENTRIES; PNS_LOG_VIEW_TRACKER(); ~PNS_LOG_VIEW_TRACKER(); void SetStage( int aStage ); VIEW_ENTRIES& GetEntriesForStage( int aStage ) { return m_vitems[aStage]; } void HideItem( PNS::ITEM* aItem ); void DisplayItem( const PNS::ITEM* aItem ); private: int m_currentStage; std::map m_vitems; }; class PNS_LOG_PLAYER_KICAD_IFACE : public PNS_KICAD_IFACE_BASE { public: PNS_LOG_PLAYER_KICAD_IFACE( PNS_LOG_VIEW_TRACKER* aViewTracker ); ~PNS_LOG_PLAYER_KICAD_IFACE(); void HideItem( PNS::ITEM* aItem ) override; void DisplayItem( const PNS::ITEM* aItem, int aClearance, bool aEdit = false ) override; private: PNS_LOG_VIEW_TRACKER *m_viewTracker; }; class PNS_LOG_PLAYER { public: PNS_LOG_PLAYER(); ~PNS_LOG_PLAYER(); void SetMode( PNS::ROUTER_MODE mode ); void ReplayLog( PNS_LOG_FILE* aLog, int aStartEventIndex = 0, int aFrom = 0, int aTo = -1 ); PNS_TEST_DEBUG_DECORATOR* GetDebugDecorator() { return m_debugDecorator; }; std::shared_ptr GetViewTracker() { return m_viewTracker; } private: void createRouter(); PNS::ROUTER_MODE m_mode; std::shared_ptr m_viewTracker; PNS_TEST_DEBUG_DECORATOR* m_debugDecorator; std::shared_ptr m_board; std::unique_ptr m_iface; std::unique_ptr m_router; }; #endif