SCRIPT Run cc include replacements

This commit is contained in:
PJ Reiniger
2025-11-07 19:56:21 -05:00
committed by Peter Johnson
parent f0a3c64121
commit 7c6efa41ae
2477 changed files with 8882 additions and 8882 deletions

View File

@@ -2,17 +2,17 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "AddressableLEDGui.h"
#include "AddressableLEDGui.hpp"
#include <memory>
#include <vector>
#include <glass/hardware/LEDDisplay.h>
#include <hal/Ports.h>
#include <hal/simulation/AddressableLEDData.h>
#include "wpi/glass/hardware/LEDDisplay.hpp"
#include "wpi/hal/Ports.h"
#include "wpi/hal/simulation/AddressableLEDData.h"
#include <imgui.h>
#include "HALSimGui.h"
#include "wpi/halsim/gui/HALSimGui.hpp"
using namespace halsimgui;

View File

@@ -2,19 +2,19 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "AnalogInputSimGui.h"
#include "AnalogInputSimGui.hpp"
#include <memory>
#include <vector>
#include <glass/View.h>
#include <glass/hardware/AnalogInput.h>
#include <hal/Ports.h>
#include <hal/simulation/AnalogInData.h>
#include <hal/simulation/SimDeviceData.h>
#include "wpi/glass/View.hpp"
#include "wpi/glass/hardware/AnalogInput.hpp"
#include "wpi/hal/Ports.h"
#include "wpi/hal/simulation/AnalogInData.h"
#include "wpi/hal/simulation/SimDeviceData.h"
#include "HALDataSource.h"
#include "HALSimGui.h"
#include "wpi/halsim/gui/HALDataSource.hpp"
#include "wpi/halsim/gui/HALSimGui.hpp"
using namespace halsimgui;

View File

@@ -2,23 +2,23 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "DIOSimGui.h"
#include "DIOSimGui.hpp"
#include <memory>
#include <vector>
#include <glass/hardware/DIO.h>
#include <glass/hardware/Encoder.h>
#include <hal/Ports.h>
#include <hal/simulation/DIOData.h>
#include <hal/simulation/DigitalPWMData.h>
#include <hal/simulation/DutyCycleData.h>
#include <hal/simulation/EncoderData.h>
#include <hal/simulation/SimDeviceData.h>
#include "wpi/glass/hardware/DIO.hpp"
#include "wpi/glass/hardware/Encoder.hpp"
#include "wpi/hal/Ports.h"
#include "wpi/hal/simulation/DIOData.h"
#include "wpi/hal/simulation/DigitalPWMData.h"
#include "wpi/hal/simulation/DutyCycleData.h"
#include "wpi/hal/simulation/EncoderData.h"
#include "wpi/hal/simulation/SimDeviceData.h"
#include "EncoderSimGui.h"
#include "HALDataSource.h"
#include "HALSimGui.h"
#include "EncoderSimGui.hpp"
#include "wpi/halsim/gui/HALDataSource.hpp"
#include "wpi/halsim/gui/HALSimGui.hpp"
using namespace halsimgui;

View File

@@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "DriverStationGui.h"
#include "DriverStationGui.hpp"
#include <algorithm>
#include <atomic>
@@ -14,22 +14,22 @@
#include <GLFW/glfw3.h>
#include <fmt/format.h>
#include <glass/Context.h>
#include <glass/Storage.h>
#include <glass/other/FMS.h>
#include <glass/support/ExtraGuiWidgets.h>
#include <glass/support/NameSetting.h>
#include <hal/DriverStationTypes.h>
#include <hal/simulation/DriverStationData.h>
#include <hal/simulation/MockHooks.h>
#include "wpi/glass/Context.hpp"
#include "wpi/glass/Storage.hpp"
#include "wpi/glass/other/FMS.hpp"
#include "wpi/glass/support/ExtraGuiWidgets.hpp"
#include "wpi/glass/support/NameSetting.hpp"
#include "wpi/hal/DriverStationTypes.h"
#include "wpi/hal/simulation/DriverStationData.h"
#include "wpi/hal/simulation/MockHooks.h"
#include <imgui.h>
#include <imgui_internal.h>
#include <wpi/SmallVector.h>
#include <wpi/StringExtras.h>
#include <wpigui.h>
#include "wpi/util/SmallVector.hpp"
#include "wpi/util/StringExtras.hpp"
#include "wpi/gui/wpigui.hpp"
#include "HALDataSource.h"
#include "HALSimGui.h"
#include "wpi/halsim/gui/HALDataSource.hpp"
#include "wpi/halsim/gui/HALSimGui.hpp"
using namespace halsimgui;

View File

@@ -7,7 +7,7 @@
#include <memory>
#include <string_view>
#include <glass/WindowManager.h>
#include "wpi/glass/WindowManager.hpp"
namespace halsimgui {

View File

@@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "EncoderSimGui.h"
#include "EncoderSimGui.hpp"
#include <stdint.h>
@@ -12,13 +12,13 @@
#include <vector>
#include <fmt/format.h>
#include <glass/DataSource.h>
#include <glass/hardware/Encoder.h>
#include <hal/Ports.h>
#include <hal/simulation/EncoderData.h>
#include <hal/simulation/SimDeviceData.h>
#include "wpi/glass/DataSource.hpp"
#include "wpi/glass/hardware/Encoder.hpp"
#include "wpi/hal/Ports.h"
#include "wpi/hal/simulation/EncoderData.h"
#include "wpi/hal/simulation/SimDeviceData.h"
#include "HALSimGui.h"
#include "wpi/halsim/gui/HALSimGui.hpp"
using namespace halsimgui;

View File

@@ -2,14 +2,14 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "HALProvider.h"
#include "wpi/halsim/gui/HALProvider.hpp"
#include <string>
#include <utility>
#include <glass/Model.h>
#include <glass/Storage.h>
#include <hal/simulation/DriverStationData.h>
#include "wpi/glass/Model.hpp"
#include "wpi/glass/Storage.hpp"
#include "wpi/hal/simulation/DriverStationData.h"
using namespace halsimgui;

View File

@@ -2,15 +2,15 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "HALSimGui.h"
#include "wpi/halsim/gui/HALSimGui.hpp"
#include <memory>
#include <utility>
#include <glass/Context.h>
#include <glass/Storage.h>
#include "wpi/glass/Context.hpp"
#include "wpi/glass/Storage.hpp"
#include <imgui.h>
#include <wpigui.h>
#include "wpi/gui/wpigui.hpp"
using namespace halsimgui;

View File

@@ -2,16 +2,16 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "NetworkTablesSimGui.h"
#include "NetworkTablesSimGui.hpp"
#include <memory>
#include <glass/Context.h>
#include <glass/Storage.h>
#include <glass/networktables/NetworkTables.h>
#include <wpigui.h>
#include "wpi/glass/Context.hpp"
#include "wpi/glass/Storage.hpp"
#include "wpi/glass/networktables/NetworkTables.hpp"
#include "wpi/gui/wpigui.hpp"
#include "HALSimGui.h"
#include "wpi/halsim/gui/HALSimGui.hpp"
using namespace halsimgui;

View File

@@ -2,21 +2,21 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "PCMSimGui.h"
#include "PCMSimGui.hpp"
#include <cstdio>
#include <memory>
#include <vector>
#include <glass/hardware/Pneumatic.h>
#include <glass/other/DeviceTree.h>
#include <hal/Ports.h>
#include <hal/Value.h>
#include <hal/simulation/CTREPCMData.h>
#include "wpi/glass/hardware/Pneumatic.hpp"
#include "wpi/glass/other/DeviceTree.hpp"
#include "wpi/hal/Ports.h"
#include "wpi/hal/Value.h"
#include "wpi/hal/simulation/CTREPCMData.h"
#include "HALDataSource.h"
#include "HALSimGui.h"
#include "SimDeviceGui.h"
#include "wpi/halsim/gui/HALDataSource.hpp"
#include "wpi/halsim/gui/HALSimGui.hpp"
#include "wpi/halsim/gui/SimDeviceGui.hpp"
using namespace halsimgui;

View File

@@ -5,7 +5,7 @@
#pragma once
#include <memory>
#include <glass/hardware/Pneumatic.h>
#include "wpi/glass/hardware/Pneumatic.hpp"
namespace halsimgui {

View File

@@ -2,21 +2,21 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "PHSimGui.h"
#include "PHSimGui.hpp"
#include <cstdio>
#include <memory>
#include <vector>
#include <glass/hardware/Pneumatic.h>
#include <glass/other/DeviceTree.h>
#include <hal/Ports.h>
#include <hal/Value.h>
#include <hal/simulation/REVPHData.h>
#include "wpi/glass/hardware/Pneumatic.hpp"
#include "wpi/glass/other/DeviceTree.hpp"
#include "wpi/hal/Ports.h"
#include "wpi/hal/Value.h"
#include "wpi/hal/simulation/REVPHData.h"
#include "HALDataSource.h"
#include "HALSimGui.h"
#include "SimDeviceGui.h"
#include "wpi/halsim/gui/HALDataSource.hpp"
#include "wpi/halsim/gui/HALSimGui.hpp"
#include "wpi/halsim/gui/SimDeviceGui.hpp"
using namespace halsimgui;

View File

@@ -5,7 +5,7 @@
#pragma once
#include <memory>
#include <glass/hardware/Pneumatic.h>
#include "wpi/glass/hardware/Pneumatic.hpp"
namespace halsimgui {

View File

@@ -2,18 +2,18 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "PWMSimGui.h"
#include "PWMSimGui.hpp"
#include <memory>
#include <vector>
#include <glass/hardware/PWM.h>
#include <hal/Ports.h>
#include <hal/simulation/AddressableLEDData.h>
#include <hal/simulation/PWMData.h>
#include "wpi/glass/hardware/PWM.hpp"
#include "wpi/hal/Ports.h"
#include "wpi/hal/simulation/AddressableLEDData.h"
#include "wpi/hal/simulation/PWMData.h"
#include "HALDataSource.h"
#include "HALSimGui.h"
#include "wpi/halsim/gui/HALDataSource.hpp"
#include "wpi/halsim/gui/HALSimGui.hpp"
using namespace halsimgui;

View File

@@ -2,19 +2,19 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "PowerDistributionSimGui.h"
#include "PowerDistributionSimGui.hpp"
#include <cstdio>
#include <cstring>
#include <memory>
#include <vector>
#include <glass/hardware/PowerDistribution.h>
#include <hal/Ports.h>
#include <hal/simulation/PowerDistributionData.h>
#include "wpi/glass/hardware/PowerDistribution.hpp"
#include "wpi/hal/Ports.h"
#include "wpi/hal/simulation/PowerDistributionData.h"
#include "HALDataSource.h"
#include "HALSimGui.h"
#include "wpi/halsim/gui/HALDataSource.hpp"
#include "wpi/halsim/gui/HALSimGui.hpp"
using namespace halsimgui;

View File

@@ -2,15 +2,15 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "RoboRioSimGui.h"
#include "RoboRioSimGui.hpp"
#include <memory>
#include <glass/hardware/RoboRio.h>
#include <hal/simulation/RoboRioData.h>
#include "wpi/glass/hardware/RoboRio.hpp"
#include "wpi/hal/simulation/RoboRioData.h"
#include "HALDataSource.h"
#include "HALSimGui.h"
#include "wpi/halsim/gui/HALDataSource.hpp"
#include "wpi/halsim/gui/HALSimGui.hpp"
using namespace halsimgui;

View File

@@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "SimDeviceGui.h"
#include "wpi/halsim/gui/SimDeviceGui.hpp"
#include <stdint.h>
@@ -10,14 +10,14 @@
#include <utility>
#include <fmt/format.h>
#include <glass/other/DeviceTree.h>
#include <hal/SimDevice.h>
#include <hal/simulation/SimDeviceData.h>
#include <wpi/DenseMap.h>
#include <wpi/StringExtras.h>
#include "wpi/glass/other/DeviceTree.hpp"
#include "wpi/hal/SimDevice.h"
#include "wpi/hal/simulation/SimDeviceData.h"
#include "wpi/util/DenseMap.hpp"
#include "wpi/util/StringExtras.hpp"
#include "HALDataSource.h"
#include "HALSimGui.h"
#include "wpi/halsim/gui/HALDataSource.hpp"
#include "wpi/halsim/gui/HALSimGui.hpp"
using namespace halsimgui;

View File

@@ -2,21 +2,21 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "TimingGui.h"
#include "TimingGui.hpp"
#include <cstdio>
#include <cstring>
#include <memory>
#include <vector>
#include <glass/Model.h>
#include <glass/View.h>
#include <hal/HALBase.h>
#include <hal/simulation/MockHooks.h>
#include <hal/simulation/NotifierData.h>
#include "wpi/glass/Model.hpp"
#include "wpi/glass/View.hpp"
#include "wpi/hal/HALBase.h"
#include "wpi/hal/simulation/MockHooks.h"
#include "wpi/hal/simulation/NotifierData.h"
#include <imgui.h>
#include "HALSimGui.h"
#include "wpi/halsim/gui/HALSimGui.hpp"
using namespace halsimgui;

View File

@@ -6,30 +6,30 @@
#include <memory>
#include <string_view>
#include <glass/Context.h>
#include <glass/Storage.h>
#include <glass/hardware/Pneumatic.h>
#include <glass/other/Plot.h>
#include <hal/Extensions.h>
#include <hal/Main.h>
#include "wpi/glass/Context.hpp"
#include "wpi/glass/Storage.hpp"
#include "wpi/glass/hardware/Pneumatic.hpp"
#include "wpi/glass/other/Plot.hpp"
#include "wpi/hal/Extensions.h"
#include "wpi/hal/Main.h"
#include <imgui.h>
#include <wpigui.h>
#include "wpi/gui/wpigui.hpp"
#include "AddressableLEDGui.h"
#include "AnalogInputSimGui.h"
#include "DIOSimGui.h"
#include "DriverStationGui.h"
#include "EncoderSimGui.h"
#include "HALSimGui.h"
#include "HALSimGuiExt.h"
#include "NetworkTablesSimGui.h"
#include "PCMSimGui.h"
#include "PHSimGui.h"
#include "PWMSimGui.h"
#include "PowerDistributionSimGui.h"
#include "RoboRioSimGui.h"
#include "SimDeviceGui.h"
#include "TimingGui.h"
#include "AddressableLEDGui.hpp"
#include "AnalogInputSimGui.hpp"
#include "DIOSimGui.hpp"
#include "DriverStationGui.hpp"
#include "EncoderSimGui.hpp"
#include "wpi/halsim/gui/HALSimGui.hpp"
#include "wpi/halsim/gui/HALSimGuiExt.hpp"
#include "NetworkTablesSimGui.hpp"
#include "PCMSimGui.hpp"
#include "PHSimGui.hpp"
#include "PWMSimGui.hpp"
#include "PowerDistributionSimGui.hpp"
#include "RoboRioSimGui.hpp"
#include "wpi/halsim/gui/SimDeviceGui.hpp"
#include "TimingGui.hpp"
using namespace halsimgui;