#ifndef BOAT_H #define BOAT_H #include #include #include #include "Input.h" #include "Ocean.h" #include #include // Include tinyobjloader class Boat { public: Boat(); ~Boat(); bool init(const char* modelPath, const char* texturePath); // Pass model and texture paths void cleanup(); void update(const Input& input, const Ocean& ocean, float deltaTime); glm::vec3 getPosition() const { return position; } glm::quat getRotation() const { return rotation; } glm::vec3 getBoundingBoxMin() const { return boundingBoxMin; } // **Getter for boundingBoxMin** glm::vec3 getBoundingBoxMax() const { return boundingBoxMax; } // **Getter for boundingBoxMax** // Getters for model data to pass to Renderer const std::vector& getVertices() const { return vertices; } const std::vector& getNormals() const { return normals; } const std::vector& getTexCoords() const { return texCoords; } const std::string& getTexturePath() const { return boatTexturePath; } // Getter for texture path const std::vector& getMaterials() const { return materials; } // Getter for materials const std::vector& getMaterialIndices() const { return materialIndices; } // Getter for materials // New: Getter and Setter for boatScale float getScale() const { return boatScale; } void setScale(float scale) { boatScale = scale; } private: glm::vec3 position; glm::quat rotation; float speed; float steeringSpeed; std::vector vertices; std::vector normals; std::vector texCoords; std::vector materialIndices; // New: Store material indices per vertex std::vector materials; // New: Store materials void handleInput(const Input& input, float deltaTime); void applyWaveMotion(const Ocean& ocean); bool loadModel(const char* path); // Function to load OBJ model std::string boatTexturePath; // Store texture path for Renderer to access glm::vec3 boundingBoxMin; glm::vec3 boundingBoxMax; int getGridIndex(int x, int z) const; // Helper function to get 1D index from 2D grid indices float boatScale; }; #endif // BOAT_H