/** * @file artis/kernel/States.hpp * @author See the AUTHORS file */ /* * Copyright (C) 2012-2019 ULCO http://www.univ-littoral.fr * * 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 3 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, see . */ #ifndef __ARTIS_KERNEL_STATES_HPP #define __ARTIS_KERNEL_STATES_HPP #include #include #include namespace artis { namespace kernel { template class States { template struct element { unsigned int index; const std::string name; W T::* var; element(unsigned int index, const std::string& name, W T::* var) : index(index), name(name), var(var) { } }; public: States() { } virtual ~States() { } const Any& get(unsigned int index) const { return states.at(index); } template void S_(std::initializer_list > list) { for (typename std::initializer_list >::iterator it = list.begin(); it != list.end(); ++it) { if (states.size() <= it->index) { states.resize(it->index + 1, Any()); state_names.resize(it->index + 1, std::string()); } states[it->index] = it->var; state_names[it->index] = it->name; } } virtual void restore(AbstractModel* model, const context::State& state) { unsigned int index = 0; for (typename std::vector::iterator it = states.begin(); it != states.end(); ++it) { if (not it->is_null()) { it->restore(static_cast < T* >(model), state.get_state(index)); } ++index; } } virtual void save(const AbstractModel* model, context::State& state) const { unsigned int index = 0; for (typename std::vector::const_iterator it = states.begin(); it != states.end(); ++it) { if (not it->is_null()) { state.add_state(index, it->save( static_cast < const T* >(model))); } ++index; } } template void state_(unsigned int index, const std::string& name, W T::* var) { if (states.size() <= index) { states.resize(index + 1, Any()); state_names.resize(index + 1, std::string()); } states[index] = Any(var); state_names[index] = name; } private: std::vector states; std::vector state_names; }; #define State(index, var) \ state_(index, std::string(ESCAPEQUOTE(index)), var) #define States(W, L) S_< W >(UNWRAP2 L) } } #endif