Skip to content

Commit c80f190

Browse files
committed
Rename file.
1 parent f572225 commit c80f190

23 files changed

+33
-33
lines changed

SerialPrograms/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,8 @@ file(GLOB MAIN_SOURCES
990990
Source/NintendoSwitch/Options/TurboMacroTable.h
991991
Source/NintendoSwitch/Options/UI/NintendoSwitch_FriendCodeListWidget.cpp
992992
Source/NintendoSwitch/Options/UI/NintendoSwitch_FriendCodeListWidget.h
993+
Source/NintendoSwitch/Programs/DateSpam/NintendoSwitch_HomeToDateTime.cpp
994+
Source/NintendoSwitch/Programs/DateSpam/NintendoSwitch_HomeToDateTime.h
993995
Source/NintendoSwitch/Programs/NintendoSwitch_FriendCodeAdder.cpp
994996
Source/NintendoSwitch/Programs/NintendoSwitch_FriendCodeAdder.h
995997
Source/NintendoSwitch/Programs/NintendoSwitch_FriendDelete.cpp
@@ -1000,8 +1002,6 @@ file(GLOB MAIN_SOURCES
10001002
Source/NintendoSwitch/Programs/NintendoSwitch_KeyboardCodeEntry.h
10011003
Source/NintendoSwitch/Programs/NintendoSwitch_MenuStabilityTester.cpp
10021004
Source/NintendoSwitch/Programs/NintendoSwitch_MenuStabilityTester.h
1003-
Source/NintendoSwitch/Programs/NintendoSwitch_Navigation.cpp
1004-
Source/NintendoSwitch/Programs/NintendoSwitch_Navigation.h
10051005
Source/NintendoSwitch/Programs/NintendoSwitch_NumberCodeEntry.cpp
10061006
Source/NintendoSwitch/Programs/NintendoSwitch_NumberCodeEntry.h
10071007
Source/NintendoSwitch/Programs/NintendoSwitch_PreventSleep.cpp

SerialPrograms/Source/NintendoSwitch/DevPrograms/TestProgramSwitch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
#include "PokemonSwSh/MaxLair/Inference/PokemonSwSh_MaxLair_Detect_PokemonSwapMenu.h"
123123
#include "CommonTools/Images/ImageFilter.h"
124124
#include "NintendoSwitch/Options/NintendoSwitch_ModelType.h"
125-
#include "NintendoSwitch/Programs/NintendoSwitch_Navigation.h"
125+
#include "NintendoSwitch/Programs/DateSpam/NintendoSwitch_HomeToDateTime.h"
126126
#include "NintendoSwitch/Inference/NintendoSwitch_ConsoleTypeDetector.h"
127127
#include "NintendoSwitch/Inference/NintendoSwitch_HomeMenuDetector.h"
128128
#include "NintendoSwitch/Inference/NintendoSwitch_StartGameUserSelectDetector.h"

SerialPrograms/Source/NintendoSwitch/Framework/UI/NintendoSwitch_CommandRow.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ CommandRow::CommandRow(
5959
row->addStretch(100);
6060

6161
m_status = new QLabel(this);
62-
m_status->setVisible(false);
63-
// row->addWidget(m_status, 12);
64-
// row->addSpacing(5);
62+
// m_status->setVisible(false);
63+
row->addWidget(m_status);
64+
row->addSpacing(5);
6565

6666
// row->addWidget(new QLabel("<b>Overlays:<b>", this));
6767

@@ -228,7 +228,7 @@ void CommandRow::update_ui(){
228228
if (!stopped){
229229
m_status->setText(
230230
QString::fromStdString(
231-
html_color_text("Not Active. A program is running.", COLOR_PURPLE)
231+
"Keyboard: " + html_color_text("&#x2b24;", COLOR_PURPLE)
232232
)
233233
);
234234
return;
@@ -239,7 +239,7 @@ void CommandRow::update_ui(){
239239
if (!m_controller.ready()){
240240
m_status->setText(
241241
QString::fromStdString(
242-
html_color_text("The controller is not ready.", COLOR_RED)
242+
"Keyboard: " + html_color_text("&#x2b24;", COLOR_RED)
243243
)
244244
);
245245
return;
@@ -254,15 +254,15 @@ void CommandRow::update_ui(){
254254
if (!m_last_known_focus){
255255
m_status->setText(
256256
QString::fromStdString(
257-
html_color_text("Click on the video to enable.", COLOR_PURPLE)
257+
"Keyboard: " + html_color_text("&#x2b24;", COLOR_PURPLE)
258258
)
259259
);
260260
return;
261261
}
262262

263263
m_status->setText(
264264
QString::fromStdString(
265-
html_color_text("Keyboard Control Active!", COLOR_DARKGREEN)
265+
"Keyboard: " + html_color_text("&#x2b24;", COLOR_DARKGREEN)
266266
)
267267
);
268268
}

SerialPrograms/Source/NintendoSwitch/Inference/NintendoSwitch_DateReader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include "NintendoSwitch/Commands/NintendoSwitch_Commands_PushButtons.h"
2424
#include "NintendoSwitch/Commands/NintendoSwitch_Commands_Superscalar.h"
2525
#include "NintendoSwitch/Inference/NintendoSwitch_HomeMenuDetector.h"
26-
#include "NintendoSwitch/Programs/NintendoSwitch_Navigation.h"
26+
#include "NintendoSwitch/Programs/DateSpam/NintendoSwitch_HomeToDateTime.h"
2727

2828
//#include <iostream>
2929
//using std::cout;

SerialPrograms/Source/NintendoSwitch/Programs/NintendoSwitch_Navigation.cpp renamed to SerialPrograms/Source/NintendoSwitch/Programs/DateSpam/NintendoSwitch_HomeToDateTime.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Nintendo Switch Navigation
1+
/* Nintendo Switch Home To Date-Time
22
*
33
* From: https://github.com/PokemonAutomation/
44
*
@@ -16,7 +16,7 @@
1616
#include "NintendoSwitch/Inference/NintendoSwitch_ConsoleTypeDetector.h"
1717
#include "NintendoSwitch/Inference/NintendoSwitch_HomeMenuDetector.h"
1818
#include "NintendoSwitch/Inference/NintendoSwitch_SelectedSettingDetector.h"
19-
#include "NintendoSwitch_Navigation.h"
19+
#include "NintendoSwitch_HomeToDateTime.h"
2020

2121
namespace PokemonAutomation{
2222
namespace NintendoSwitch{

SerialPrograms/Source/NintendoSwitch/Programs/NintendoSwitch_Navigation.h renamed to SerialPrograms/Source/NintendoSwitch/Programs/DateSpam/NintendoSwitch_HomeToDateTime.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/* Nintendo Switch Navigation
1+
/* Nintendo Switch Home To Date-Time
22
*
33
* From: https://github.com/PokemonAutomation/
44
*
55
*/
66

7-
#ifndef PokemonAutomation_NintendoSwitch_Navigation_H
8-
#define PokemonAutomation_NintendoSwitch_Navigation_H
7+
#ifndef PokemonAutomation_NintendoSwitch_HomeToDateTime_H
8+
#define PokemonAutomation_NintendoSwitch_HomeToDateTime_H
99

1010
//#include "CommonFramework/ImageTools/ImageBoxes.h"
1111
#include "CommonFramework/Tools/VideoStream.h"

SerialPrograms/Source/PokemonLGPE/Commands/PokemonLGPE_DateSpam.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "NintendoSwitch/Commands/NintendoSwitch_Commands_PushButtons.h"
99
#include "NintendoSwitch/Commands/NintendoSwitch_Commands_Superscalar.h"
1010
#include "NintendoSwitch/Programs/NintendoSwitch_GameEntry.h"
11-
#include "NintendoSwitch/Programs/NintendoSwitch_Navigation.h"
11+
#include "NintendoSwitch/Programs/DateSpam/NintendoSwitch_HomeToDateTime.h"
1212
#include "PokemonLGPE_DateSpam.h"
1313

1414
namespace PokemonAutomation{

SerialPrograms/Source/PokemonLGPE/Programs/Farming/PokemonLGPE_DailyItemFarmer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include "NintendoSwitch/Commands/NintendoSwitch_Commands_PushButtons.h"
1414
#include "NintendoSwitch/Controllers/NintendoSwitch_Joycon.h"
1515
#include "NintendoSwitch/Programs/NintendoSwitch_GameEntry.h"
16-
#include "NintendoSwitch/Programs/NintendoSwitch_Navigation.h"
16+
#include "NintendoSwitch/Programs/DateSpam/NintendoSwitch_HomeToDateTime.h"
1717
#include "NintendoSwitch/NintendoSwitch_Settings.h"
1818
#include "Pokemon/Pokemon_Strings.h"
1919
#include "CommonTools/VisualDetectors/BlackScreenDetector.h"

SerialPrograms/Source/PokemonSV/Programs/AutoStory/PokemonSV_AutoStory_Segment_11.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "NintendoSwitch/Commands/NintendoSwitch_Commands_PushButtons.h"
1010
#include "NintendoSwitch/Inference/NintendoSwitch_DateReader.h"
1111
#include "NintendoSwitch/Programs/NintendoSwitch_GameEntry.h"
12-
#include "NintendoSwitch/Programs/NintendoSwitch_Navigation.h"
12+
#include "NintendoSwitch/Programs/DateSpam/NintendoSwitch_HomeToDateTime.h"
1313
#include "PokemonSV/PokemonSV_Settings.h"
1414
#include "PokemonSV/Inference/Overworld/PokemonSV_DirectionDetector.h"
1515
#include "PokemonSV/Inference/Overworld/PokemonSV_OliveDetector.h"

SerialPrograms/Source/PokemonSV/Programs/Farming/PokemonSV_BBQSoloFarmer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include "NintendoSwitch/NintendoSwitch_Settings.h"
1111
#include "NintendoSwitch/Commands/NintendoSwitch_Commands_PushButtons.h"
1212
#include "NintendoSwitch/Programs/NintendoSwitch_GameEntry.h"
13-
#include "NintendoSwitch/Programs/NintendoSwitch_Navigation.h"
13+
#include "NintendoSwitch/Programs/DateSpam/NintendoSwitch_HomeToDateTime.h"
1414
#include "PokemonSV/Programs/PokemonSV_GameEntry.h"
1515
#include "PokemonSV/Programs/PokemonSV_SaveGame.h"
1616
#include "PokemonSV/Programs/PokemonSV_MenuNavigation.h"

0 commit comments

Comments
 (0)