/* * All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or * its licensors. * * For complete copyright and license terms please see the LICENSE at the root of this * distribution (the "License"). All use of this software is governed by the License, * or, if provided, by the license below or the license accompanying this file. Do not * remove or modify any license notices. This file is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * */ #pragma once #include #include #include namespace DebugDraw { class DebugDrawObbElement { public: AZ_CLASS_ALLOCATOR(DebugDrawObbElement, AZ::SystemAllocator, 0); AZ_TYPE_INFO(DebugDrawObbElement, "{C0B12E93-287A-4170-B1B6-3BF70D1D9433}"); static void Reflect(AZ::ReflectContext* context); AZ::EntityId m_targetEntityId; AZ::Obb m_obb; float m_duration; AZ::ScriptTimePoint m_activateTime; AZ::Color m_color; AZ::Vector3 m_worldLocation; AZ::ComponentId m_owningEditorComponent; AZ::Vector3 m_scale; DebugDrawObbElement() : m_duration(0.1f) , m_color(1.0f, 1.0f, 1.0f, 1.0f) // AZ::Color::White , m_worldLocation(AZ::Vector3::CreateZero()) , m_owningEditorComponent(AZ::InvalidComponentId) , m_scale(AZ::Vector3(1.0f, 1.0f, 1.0f)) { m_obb.CreateFromPositionAndAxes(m_worldLocation, AZ::Vector3(1, 0, 0), 1.0f, AZ::Vector3(0, 1, 0), 1.0f, AZ::Vector3(0, 0, 1), 1.0f); } }; class DebugDrawObbComponent : public AZ::Component { friend class DebugDrawSystemComponent; public: AZ_COMPONENT(DebugDrawObbComponent, "{B1574E9A-C9A1-4A9C-9866-23735ED6FD69}"); static void Reflect(AZ::ReflectContext* context); static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided); static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible); static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required); static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& dependent); DebugDrawObbComponent() = default; explicit DebugDrawObbComponent(const DebugDrawObbElement& element); ~DebugDrawObbComponent() override = default; //////////////////////////////////////////////////////////////////////// // AZ::Component interface implementation void Init() override; void Activate() override; void Deactivate() override; //////////////////////////////////////////////////////////////////////// protected: DebugDrawObbElement m_element; }; }