.. _program_listing_file_include_flamegpu_runtime_environment_HostEnvironment.cuh: Program Listing for File HostEnvironment.cuh ============================================ |exhale_lsh| :ref:`Return to documentation for file ` (``include/flamegpu/runtime/environment/HostEnvironment.cuh``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef INCLUDE_FLAMEGPU_RUNTIME_ENVIRONMENT_HOSTENVIRONMENT_CUH_ #define INCLUDE_FLAMEGPU_RUNTIME_ENVIRONMENT_HOSTENVIRONMENT_CUH_ #include #include // Required for FLAMEGPU_SEATBELTS=OFF builds for some reason. #include #include #include #include #include #include #include #include "flamegpu/simulation/detail/CUDAMacroEnvironment.h" #include "flamegpu/simulation/detail/CUDAErrorChecking.cuh" #include "flamegpu/simulation/detail/EnvironmentManager.cuh" #include "flamegpu/runtime/environment/HostMacroProperty.cuh" #include "flamegpu/simulation/detail/CUDAEnvironmentDirectedGraphBuffers.cuh" #include "flamegpu/runtime/environment/HostEnvironmentDirectedGraph.cuh" namespace flamegpu { class HostEnvironment { friend class HostAPI; typedef std::unordered_map> CUDADirectedGraphMap; protected: explicit HostEnvironment(CUDASimulation &_simulation, std::shared_ptr env, std::shared_ptr _macro_env, CUDADirectedGraphMap& _directed_graph_map, detail::CUDAScatter& _scatter, unsigned int _streamID, cudaStream_t _stream); const std::shared_ptr env_mgr; const std::shared_ptr macro_env; CUDADirectedGraphMap& directed_graph_map; const unsigned int instance_id; CUDASimulation& simulation; detail::CUDAScatter& scatter; const unsigned int streamID; const cudaStream_t stream; public: template T getProperty(const std::string &name) const; template std::array getProperty(const std::string &name) const; template T getProperty(const std::string &name, flamegpu::size_type index) const; #ifdef SWIG template std::vector getPropertyArray(const std::string & name) const; #endif template T setProperty(const std::string &name, T value) const; template std::array setProperty(const std::string &name, const std::array &value) const; template T setProperty(const std::string &name, flamegpu::size_type index, T value) const; #ifdef SWIG template std::vector setPropertyArray(const std::string & name, const std::vector & value) const; #endif template HostMacroProperty getMacroProperty(const std::string& name) const; #ifdef SWIG template HostMacroProperty_swig getMacroProperty_swig(const std::string& name) const; #endif void importMacroProperty(const std::string& property_name, const std::string& file_path) const; void exportMacroProperty(const std::string& property_name, const std::string& file_path, bool pretty_print = true) const; HostEnvironmentDirectedGraph getDirectedGraph(const std::string& name) const; }; template T HostEnvironment::setProperty(const std::string &name, const T value) const { if (!name.empty() && name[0] == '_') { THROW exception::ReservedName("Environment property names cannot begin with '_', this is reserved for internal usage, " "in HostEnvironment::set()."); } return env_mgr->setProperty(name, value); } template std::array HostEnvironment::setProperty(const std::string &name, const std::array &value) const { if (!name.empty() && name[0] == '_') { THROW exception::ReservedName("Environment property names cannot begin with '_', this is reserved for internal usage, " "in HostEnvironment::set()."); } return env_mgr->setProperty(name, value); } template T HostEnvironment::setProperty(const std::string &name, flamegpu::size_type index, const T value) const { if (!name.empty() && name[0] == '_') { THROW exception::ReservedName("Environment property names cannot begin with '_', this is reserved for internal usage, " "in HostEnvironment::set()."); } return env_mgr->setProperty(name, index, value); } #ifdef SWIG template std::vector HostEnvironment::setPropertyArray(const std::string &name, const std::vector &value) const { if (!name.empty() && name[0] == '_') { THROW exception::ReservedName("Environment property names cannot begin with '_', this is reserved for internal usage, " "in HostEnvironment::setArray()."); } return env_mgr->setPropertyArray(name, value); } #endif // SWIG template T HostEnvironment::getProperty(const std::string &name) const { return env_mgr->getProperty(name); } template std::array HostEnvironment::getProperty(const std::string &name) const { return env_mgr->getProperty(name); } template T HostEnvironment::getProperty(const std::string &name, const flamegpu::size_type index) const { return env_mgr->getProperty(name, index); } #ifdef SWIG template std::vector HostEnvironment::getPropertyArray(const std::string& name) const { return env_mgr->getPropertyArray(name); } #endif // SWIG template HostMacroProperty HostEnvironment::getMacroProperty(const std::string& name) const { return macro_env->getProperty(name); } #ifdef SWIG template HostMacroProperty_swig HostEnvironment::getMacroProperty_swig(const std::string& name) const { return macro_env->getProperty_swig(name); } #endif } // namespace flamegpu #endif // INCLUDE_FLAMEGPU_RUNTIME_ENVIRONMENT_HOSTENVIRONMENT_CUH_