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.

98 lines
2.5 KiB

#include "LightHandle.h"
#include "LightController.h"
LightHandle::LightHandle(LightController *const light_controller, unsigned int light_id, LightPrototype light_prototype, PackedData *const data_reference) :
light_controller_ref(light_controller), light_id(light_id), data_reference(data_reference) {
friction_coefficient = light_prototype.friction;
default_impulse = light_prototype.impulse;
movement = light_prototype.movement;
data_reference->direction_cartesian = light_prototype.direction_cartesian;
data_reference->position = light_prototype.position;
data_reference->rgbi = light_prototype.rgbi;
}
LightHandle::~LightHandle() {
// Sanitize data here, or in the controller?
data_reference->direction_cartesian = sf::Vector3f(0, 0, 0);
data_reference->position = sf::Vector3f(0, 0, 0);
data_reference->rgbi = sf::Vector4f(0, 0, 0, 0);
light_controller_ref->remove_light(light_id);
}
void LightHandle::set_friction(float friction)
{
}
void LightHandle::set_impulse(float impulse)
{
}
void LightHandle::set_movement(sf::Vector3f movement)
{
}
void LightHandle::add_movement(sf::Vector3f movement)
{
}
void LightHandle::set_position(sf::Vector3f position)
{
}
void LightHandle::set_direction(sf::Vector3f direction)
{
}
void LightHandle::set_rgbi(sf::Vector4f rgbi)
{
}
void LightHandle::recieve_event(VrEventPublisher* publisher, std::unique_ptr<vr::Event> event)
{
if (event->type == vr::Event::JoystickMoved) {
vr::JoystickMoved *joystick_event = static_cast<vr::JoystickMoved*>(event.get());
if (joystick_event->axis == sf::Joystick::Axis::X) {
movement.x = -joystick_event->position / 5;
//add_relative_impulse(Camera::DIRECTION::FORWARD, joystick_event->position);
}
else if (joystick_event->axis == sf::Joystick::Axis::Y) {
movement.y = joystick_event->position / 5;
//add_relative_impulse(Camera::DIRECTION::RIGHT, joystick_event->position);
}
//else if (joystick_event->axis == sf::Joystick::Axis::Z) {
// add_relative_impulse(Camera::DIRECTION::DOWN, joystick_event->position);
//}
}
}
void LightHandle::update(double delta_time) {
double multiplier = 40;
data_reference->position.x += static_cast<float>(movement.x * delta_time * multiplier);
data_reference->position.y += static_cast<float>(movement.y * delta_time * multiplier);
data_reference->position.z += static_cast<float>(movement.z * delta_time * multiplier);
//movement *= static_cast<float>(friction_coefficient * delta_time * multiplier);
}