Skip to content

File ACInfoToolheadManager.h

File List > AIAC > ACInfoToolheadManager.h

Go to the documentation of this file

// #####################################################################
// >>>>>>>>>>>>>>>>>>>>> BEGINNING OF LEGAL NOTICE >>>>>>>>>>>>>>>>>>>>>
//######################################################################
//
// This source file, along with its associated content, was authored by
// Andrea Settimi, Hong-Bin Yang, Naravich Chutisilp, and numerous other
// contributors. The code was originally developed at the Laboratory for
// Timber Construction (IBOIS, director: Prof. Yves Weinand) at the School of 
// Architecture, Civil and Environmental Engineering (ENAC) at the Swiss
// Federal Institute of Technology in Lausanne (EPFL) for the Doctoral
// Research "Augmented Carpentry" (PhD researcher: Andrea Settimi,
// co-director: Dr. Julien Gamerro, director: Prof. Yves Weinand).
//
// Although the entire repository is distributed under the GPL license,
// these particular source files may also be used under the terms of the
// MIT license. By accessing or using this file, you agree to the following:
//
// 1. You may reproduce, modify, and distribute this file in accordance
//    with the terms of the MIT license.
// 2. You must retain this legal notice in all copies or substantial
//    portions of this file.
// 3. This file is provided "AS IS," without any express or implied
//    warranties, including but not limited to the implied warranties of
//    merchantability and fitness for a particular purpose.
//
// If you cannot or will not comply with the above conditions, you are
// not permitted to use this file. By proceeding, you acknowledge and
// accept all terms and conditions herein.
//
//######################################################################
// <<<<<<<<<<<<<<<<<<<<<<< END OF LEGAL NOTICE <<<<<<<<<<<<<<<<<<<<<<<<
// #####################################################################
//
#pragma once

#include "AIAC/ACInfoToolhead.h"

namespace AIAC
{
    class ACInfoToolheadManager
    {
        public:
            ACInfoToolheadManager()
                // : m_ActiveACInfoToolhead(nullptr)
            {
                m_ActiveACInfoToolhead = std::make_shared<ACInfoToolhead>(); 
            };

        public:
            void LoadToolheadModels();

        public:
            void SetActiveToolhead(const std::string& toolheadName);
            inline std::shared_ptr<ACInfoToolhead> GetActiveToolhead() const { return this->m_ActiveACInfoToolhead; }
            inline std::shared_ptr<ACInfoToolhead> GetToolhead(const std::string& toolheadName) const { return this->m_ACInfoToolheadMap.at(toolheadName); }
            inline std::string GetActiveToolheadName() const { return this->m_ActiveACInfoToolhead->GetName(); }
            inline ACToolHeadType GetToolheadType(const std::string& toolheadName) const { return this->m_ACInfoToolheadMap.at(toolheadName)->GetType(); }
            inline ACToolHeadType GetActiveToolheadType() const { return this->m_ActiveACInfoToolhead->GetType(); }


            inline std::vector<std::string> GetToolheadNames() const
            {
                std::vector<std::string> toolheadNames;
                for (auto& toolhead : this->m_ACInfoToolheadMap)
                {
                    toolheadNames.push_back(toolhead.first);
                }
                return toolheadNames;
            }

        private:
            std::map<std::string, std::shared_ptr<ACInfoToolhead>> m_ACInfoToolheadMap;
            std::shared_ptr<ACInfoToolhead> m_ActiveACInfoToolhead;
    };
}