// SPDX-FileCopyrightText: 2021 Jorrit Rouwe // SPDX-License-Identifier: MIT #pragma once #include #include // Simple test that test the Character class. Allows the user to move around with the arrow keys and jump with the J button. class CharacterTest : public CharacterBaseTest { public: JPH_DECLARE_RTTI_VIRTUAL(CharacterTest) // Destructor virtual ~CharacterTest() override; // Initialize the test virtual void Initialize() override; // Update the test, called before the physics update virtual void PrePhysicsUpdate(const PreUpdateParams &inParams) override; // Update the test, called after the physics update virtual void PostPhysicsUpdate(float inDeltaTime) override; // Saving / restoring state for replay virtual void SaveState(StateRecorder &inStream) const override; virtual void RestoreState(StateRecorder &inStream) override; protected: // Get position of the character virtual Vec3 GetCharacterPosition() const override { return mCharacter->GetPosition(); } // Handle user input to the character virtual void HandleInput(Vec3Arg inMovementDirection, bool inJump, bool inSwitchStance, float inDeltaTime) override; private: // The 'player' character Ref mCharacter; };