mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-19 00:41:41 +00:00
Given that WPILib is nuking their Java tooling, it becomes necessary to pull said tooling into PV itself. This migrates the CombinedRuntimeLoader into PV, which should finalize all of the tooling migration.
81 lines
2.9 KiB
Java
81 lines
2.9 KiB
Java
/*
|
|
* Copyright (C) Photon Vision.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package org.photonvision.jni;
|
|
|
|
import edu.wpi.first.apriltag.jni.AprilTagJNI;
|
|
import edu.wpi.first.cscore.CameraServerJNI;
|
|
import edu.wpi.first.cscore.OpenCvLoader;
|
|
import edu.wpi.first.hal.JNIWrapper;
|
|
import edu.wpi.first.math.jni.WPIMathJNI;
|
|
import edu.wpi.first.net.WPINetJNI;
|
|
import edu.wpi.first.networktables.NetworkTablesJNI;
|
|
import edu.wpi.first.util.WPIUtilJNI;
|
|
import java.io.IOException;
|
|
import org.opencv.core.Core;
|
|
|
|
public class LibraryLoader {
|
|
private static boolean hasWpiLoaded = false;
|
|
private static boolean hasTargetingLoaded = false;
|
|
|
|
public static boolean loadWpiLibraries() {
|
|
if (hasWpiLoaded) return true;
|
|
|
|
NetworkTablesJNI.Helper.setExtractOnStaticLoad(false);
|
|
WPIUtilJNI.Helper.setExtractOnStaticLoad(false);
|
|
CameraServerJNI.Helper.setExtractOnStaticLoad(false);
|
|
OpenCvLoader.Helper.setExtractOnStaticLoad(false);
|
|
JNIWrapper.Helper.setExtractOnStaticLoad(false);
|
|
WPINetJNI.Helper.setExtractOnStaticLoad(false);
|
|
WPIMathJNI.Helper.setExtractOnStaticLoad(false);
|
|
AprilTagJNI.Helper.setExtractOnStaticLoad(false);
|
|
try {
|
|
// Need to load wpiutil first before checking if the MSVC runtime is valid
|
|
CombinedRuntimeLoader.loadLibraries(LibraryLoader.class, "wpiutiljni");
|
|
WPIUtilJNI.checkMsvcRuntime();
|
|
CombinedRuntimeLoader.loadLibraries(
|
|
LibraryLoader.class,
|
|
"wpimathjni",
|
|
"ntcorejni",
|
|
"wpinetjni",
|
|
"wpiHaljni",
|
|
"cscorejni",
|
|
"apriltagjni");
|
|
|
|
CombinedRuntimeLoader.loadLibraries(LibraryLoader.class, Core.NATIVE_LIBRARY_NAME);
|
|
hasWpiLoaded = true;
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
hasWpiLoaded = false;
|
|
}
|
|
|
|
return hasWpiLoaded;
|
|
}
|
|
|
|
public static boolean loadTargeting() {
|
|
if (hasTargetingLoaded) return true;
|
|
try {
|
|
CombinedRuntimeLoader.loadLibraries(LibraryLoader.class, "photontargetingJNI");
|
|
hasTargetingLoaded = true;
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
hasTargetingLoaded = false;
|
|
}
|
|
return hasTargetingLoaded;
|
|
}
|
|
}
|