/* * MIT License * * Copyright (c) 2022 PhotonVision * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include "photonlib/PhotonCamera.h" #include #include #include "PhotonVersion.h" #include "photonlib/Packet.h" namespace photonlib { constexpr const units::second_t VERSION_CHECK_INTERVAL = 5_s; PhotonCamera::PhotonCamera(std::shared_ptr instance, const std::string& cameraName) : mainTable(instance->GetTable("photonvision")), rootTable(mainTable->GetSubTable(cameraName)), rawBytesEntry(rootTable->GetEntry("rawBytes")), driverModeEntry(rootTable->GetEntry("driverMode")), inputSaveImgEntry(rootTable->GetEntry("inputSaveImgCmd")), outputSaveImgEntry(rootTable->GetEntry("outputSaveImgCmd")), pipelineIndexEntry(rootTable->GetEntry("pipelineIndex")), ledModeEntry(mainTable->GetEntry("ledMode")), versionEntry(mainTable->GetEntry("version")), path(rootTable->GetPath()) {} PhotonCamera::PhotonCamera(const std::string& cameraName) : PhotonCamera(std::make_shared( nt::NetworkTableInstance::GetDefault()), cameraName) {} PhotonPipelineResult PhotonCamera::GetLatestResult() { // Prints warning if not connected VerifyVersion(); // Clear the current packet. packet.Clear(); // Create the new result; PhotonPipelineResult result; // Fill the packet with latest data and populate result. std::shared_ptr ntvalue = rawBytesEntry.GetValue(); if (!ntvalue) return result; std::string value{ntvalue->GetRaw()}; std::vector bytes{value.begin(), value.end()}; photonlib::Packet packet{bytes}; packet >> result; result.SetTimestamp(units::microsecond_t(rawBytesEntry.GetLastChange()) - result.GetLatency()); return result; } void PhotonCamera::SetDriverMode(bool driverMode) { driverModeEntry.SetBoolean(driverMode); } void PhotonCamera::TakeInputSnapshot() { inputSaveImgEntry.SetBoolean(true); } void PhotonCamera::TakeOutputSnapshot() { outputSaveImgEntry.SetBoolean(true); } bool PhotonCamera::GetDriverMode() const { return driverModeEntry.GetBoolean(false); } void PhotonCamera::SetPipelineIndex(int index) { pipelineIndexEntry.SetDouble(static_cast(index)); } int PhotonCamera::GetPipelineIndex() const { return static_cast(pipelineIndexEntry.GetDouble(0)); } LEDMode PhotonCamera::GetLEDMode() const { return static_cast(static_cast(ledModeEntry.GetDouble(-1.0))); } void PhotonCamera::SetLEDMode(LEDMode mode) { ledModeEntry.SetDouble(static_cast(static_cast(mode))); } void PhotonCamera::VerifyVersion() { if (!PhotonCamera::VERSION_CHECK_ENABLED) return; if ((frc::Timer::GetFPGATimestamp() - lastVersionCheckTime) < VERSION_CHECK_INTERVAL) return; this->lastVersionCheckTime = frc::Timer::GetFPGATimestamp(); const std::string& versionString = versionEntry.GetString(""); if (versionString.empty()) { std::string path_ = path; FRC_ReportError( frc::warn::Warning, "PhotonVision coprocessor at path {} not found on NetworkTables!", path_); } else if (!VersionMatches(versionString)) { FRC_ReportError(frc::warn::Warning, "Photon version {} does not match coprocessor version {}!", PhotonVersion::versionString, versionString); } } } // namespace photonlib