/* * Copyright (C) 2021 Christopher J. Howard * * This file is part of Antkeeper source code. * * Antkeeper source code 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. * * Antkeeper source code 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 Antkeeper source code. If not, see . */ #ifndef ANTKEEPER_TRACKING_SYSTEM_HPP #define ANTKEEPER_TRACKING_SYSTEM_HPP #include "entity-system.hpp" #include "game/components/trackable-component.hpp" #include "event/event-handler.hpp" #include "game/events/tool-events.hpp" #include class material; class event_dispatcher; class resource_manager; class model; namespace scene { class collection; class model_instance; } class tracking_system: public entity_system, public event_handler, public event_handler { public: tracking_system(entt::registry& registry, event_dispatcher* event_dispatcher, resource_manager* resource_manager); virtual ~tracking_system(); virtual void update(double t, double dt); void set_scene(scene::collection* collection); void set_viewport(const float4& viewport); private: void on_component_construct(entt::registry& registry, entt::entity entity, ecs::trackable_component& component); void on_component_destroy(entt::registry& registry, entt::entity entity); virtual void handle_event(const tool_pressed_event& event); virtual void handle_event(const tool_released_event& event); event_dispatcher* event_dispatcher; resource_manager* resource_manager; scene::collection* scene_collection; model* tracker_model; model* paint_ball_model; material** paint_ball_materials; std::unordered_map trackers; }; #endif // ANTKEEPER_TRACKING_SYSTEM_HPP