/* * KartFactory.h * * Created on: Aug 19, 2020 * Author: fredrick */ #ifndef KARTFACTORY_H_ #define KARTFACTORY_H_ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "KartPhysicsComponent.h" #include "KartInteractionComponent.h" namespace JamSpook { using std::string; using std::shared_ptr; using std::make_shared; using std::weak_ptr; using std::unique_ptr; using std::make_unique; using std::dynamic_pointer_cast; using std::function; using std::bind; using std::vector; using std::chrono::milliseconds; using glm::vec3; using glm::mat4; using glm::quat; using glm::quat_cast; using glm::translate; using glm::scale; using glm::rotate; using glm::eulerAngleXYZ; using glm::radians; using ecos::utility::getShared; using ecos::utility::getRotationDegrees; using ecos::core::IDCache; using ecos::core::logging::Log; using ecos::core::logging::LogLevel; using ecos::core::BroadcastObservable; using ecos::core::Message; using ecos::core::Entity; using ecos::core::SceneGraph; using ecos::core::ICCResponseComponent; using ecos::asset::AssetSystem; using ecos::asset::DataManagementMode; using ecos::animation::AnimationSystem; using ecos::animation::Animation; using ecos::animation::AnimationFactory; using ecos::animation::AnimationComponent; using ecos::animation::Attribute; using ecos::graphics::GraphicsSystem; using ecos::graphics::GraphicsComponent; using ecos::graphics::RenderLayer; using ecos::graphics::TextureFactory; using ecos::graphics::Texture; using ecos::graphics::ShaderType; using ecos::graphics::ShaderAsset; using ecos::graphics::ShaderProgram; using ecos::graphics::ShaderProgramFactory; using ecos::graphics::Material; using ecos::graphics::MaterialFactory; using ecos::graphics::Mesh; using ecos::graphics::MeshFactory; using ecos::graphics::ModelRenderableFactory; using ecos::graphics::ModelRenderable; using ecos::graphics::lighting::LightSource; using ecos::graphics::lighting::LightSourceFactory; using ecos::interaction::InteractionSystem; using ecos::physics::PhysicsSystem; using ecos::physics::PhysicsComponent; using ecos::physics::ColliderFactory; using ecos::physics::Collider; /// Factory to simplify player kart entity creation class KartFactory { private: weak_ptr mAssetSystem; weak_ptr mGraphicsSystem; weak_ptr mPhysicsSystem; weak_ptr mInteractionSystem; weak_ptr mAnimationSystem; weak_ptr mRenderLayer; public: KartFactory(weak_ptr assetSystem, weak_ptr graphicsSystem, weak_ptr physicsSystem, weak_ptr interactionSystem, weak_ptr animationSystem, weak_ptr renderLayer); virtual ~KartFactory(); /// Compose a kart entity shared_ptr createKart(const vec3 position, const vec3 eulerRotationXYZDegrees); /// Compose a rotating kart entity shared_ptr createRotatingKart(const vec3 position); }; } // namespace JamSpook #endif // KARTFACTORY_H_