blob: 686f5eb3cf431f4204d7fc3c21002d0e5a8f9292 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "device/vr/vr_device_base.h"
#include "device/vr/vr_device_provider.h"
#include "device/vr/vr_display_impl.h"
namespace device {
VRDeviceBase::VRDeviceBase(VRDeviceId id)
: id_(static_cast<unsigned int>(id)), runtime_binding_(this) {}
VRDeviceBase::~VRDeviceBase() = default;
unsigned int VRDeviceBase::GetId() const {
return id_;
}
void VRDeviceBase::PauseTracking() {}
void VRDeviceBase::ResumeTracking() {}
mojom::VRDisplayInfoPtr VRDeviceBase::GetVRDisplayInfo() {
DCHECK(display_info_);
return display_info_.Clone();
}
void VRDeviceBase::OnExitPresent() {
if (listener_)
listener_->OnExitPresent();
presenting_ = false;
}
void VRDeviceBase::OnStartPresenting() {
presenting_ = true;
}
bool VRDeviceBase::HasExclusiveSession() {
return presenting_;
}
void VRDeviceBase::SetMagicWindowEnabled(bool enabled) {
magic_window_enabled_ = enabled;
}
void VRDeviceBase::ListenToDeviceChanges(
mojom::XRRuntimeEventListenerPtr listener,
mojom::XRRuntime::ListenToDeviceChangesCallback callback) {
listener_ = std::move(listener);
std::move(callback).Run(display_info_.Clone());
}
void VRDeviceBase::GetFrameData(
mojom::VRMagicWindowProvider::GetFrameDataCallback callback) {
if (!magic_window_enabled_) {
std::move(callback).Run(nullptr);
return;
}
OnMagicWindowFrameDataRequest(std::move(callback));
}
void VRDeviceBase::SetVRDisplayInfo(mojom::VRDisplayInfoPtr display_info) {
DCHECK(display_info);
DCHECK(display_info->index == id_);
bool initialized = !!display_info_;
display_info_ = std::move(display_info);
// Don't notify when the VRDisplayInfo is initially set.
if (!initialized)
return;
if (listener_)
listener_->OnDisplayInfoChanged(display_info_.Clone());
}
void VRDeviceBase::OnActivate(mojom::VRDisplayEventReason reason,
base::Callback<void(bool)> on_handled) {
if (listener_)
listener_->OnDeviceActivated(reason, std::move(on_handled));
}
mojom::XRRuntimePtr VRDeviceBase::BindXRRuntimePtr() {
mojom::XRRuntimePtr runtime;
runtime_binding_.Bind(mojo::MakeRequest(&runtime));
return runtime;
}
bool VRDeviceBase::ShouldPauseTrackingWhenFrameDataRestricted() {
return false;
}
void VRDeviceBase::OnListeningForActivate(bool listening) {}
void VRDeviceBase::OnMagicWindowFrameDataRequest(
mojom::VRMagicWindowProvider::GetFrameDataCallback callback) {
std::move(callback).Run(nullptr);
}
void VRDeviceBase::SetListeningForActivate(bool is_listening) {
OnListeningForActivate(is_listening);
}
void VRDeviceBase::RequestHitTest(
mojom::XRRayPtr ray,
mojom::VRMagicWindowProvider::RequestHitTestCallback callback) {
NOTREACHED() << "Unexpected call to a device without hit-test support";
std::move(callback).Run(base::nullopt);
}
void VRDeviceBase::RequestMagicWindowSession(
mojom::VRMagicWindowProviderRequest provider_request,
mojom::XRSessionControllerRequest controller_request,
mojom::XRRuntime::RequestMagicWindowSessionCallback callback) {
magic_window_sessions_.push_back(std::make_unique<VRDisplayImpl>(
this, std::move(provider_request), std::move(controller_request)));
std::move(callback).Run(true);
}
void VRDeviceBase::EndMagicWindowSession(VRDisplayImpl* session) {
base::EraseIf(magic_window_sessions_,
[&](const std::unique_ptr<VRDisplayImpl>& item) {
return item.get() == session;
});
}
} // namespace device