You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.3 KiB
66 lines
2.3 KiB
#ifndef BOAT_H
|
|
#define BOAT_H
|
|
|
|
#include <glm/glm.hpp>
|
|
#include <glm/gtc/quaternion.hpp>
|
|
#include <vector>
|
|
#include "Input.h"
|
|
#include "Ocean.h"
|
|
#include <string>
|
|
#include <tiny_obj_loader.h> // 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<glm::vec3>& getVertices() const { return vertices; }
|
|
const std::vector<glm::vec3>& getNormals() const { return normals; }
|
|
const std::vector<glm::vec2>& getTexCoords() const { return texCoords; }
|
|
const std::string& getTexturePath() const { return boatTexturePath; } // Getter for texture path
|
|
const std::vector<tinyobj::material_t>& getMaterials() const { return materials; } // Getter for materials
|
|
const std::vector<int>& 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<glm::vec3> vertices;
|
|
std::vector<glm::vec3> normals;
|
|
std::vector<glm::vec2> texCoords;
|
|
std::vector<int> materialIndices; // New: Store material indices per vertex
|
|
std::vector<tinyobj::material_t> 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
|