cc3dsfs/include/Menus/Optimize3DSMenu.hpp
Lorenzooone 4ce35770ac
Some checks are pending
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linux32 flags:32 name:Linux GCC 32 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linux64 flags:64 name:Linux GCC x64 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linuxarm32 flags:arm32 name:Linux GCC ARM 32 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:linuxarm64 flags:arm64 name:Linux GCC ARM 64 os:ubuntu-latest]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:macos name:macOS Apple Silicon os:macos-14]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:win32 flags:-A Win32 -DCMAKE_PARALLEL_MSVC=TRUE name:Windows VS2022 Win32 os:windows-2022]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:win64 flags:-A x64 -DCMAKE_PARALLEL_MSVC=TRUE name:Windows VS2022 x64 os:windows-2022]) (push) Waiting to run
CD / ${{ matrix.platform.name }} ${{ matrix.config.name }} (map[flags:-DBUILD_SHARED_LIBS=FALSE name:Static], map[artifact_name:winarm64 flags:-A ARM64 -DCMAKE_PARALLEL_MSVC=TRUE name:Windows VS2022 ARM os:windows-2022]) (push) Waiting to run
CD / Create Pi Mono Setup (push) Blocked by required conditions
CD / Publishing (push) Blocked by required conditions
Implement Menu for adding Optimize serial keys
2025-11-09 04:11:37 +01:00

44 lines
1.3 KiB
C++

#ifndef __OPTIMIZE3DSMENU_HPP
#define __OPTIMIZE3DSMENU_HPP
#include "OptionSelectionMenu.hpp"
#include <chrono>
#include "TextRectangle.hpp"
#include "sfml_gfx_structs.hpp"
#include "display_structs.hpp"
#include "capture_structs.hpp"
enum Optimize3DSMenuOutAction{
OPTIMIZE3DS_MENU_NO_ACTION,
OPTIMIZE3DS_MENU_BACK,
OPTIMIZE3DS_MENU_INPUT_VIDEO_FORMAT_INC,
OPTIMIZE3DS_MENU_INPUT_VIDEO_FORMAT_DEC,
OPTIMIZE3DS_MENU_INFO_DEVICE_ID,
OPTIMIZE3DS_MENU_COPY_DEVICE_ID,
OPTIMIZE3DS_MENU_OPTIMIZE_SERIAL_KEY,
OPTIMIZE3DS_MENU_OPTIMIZE_SERIAL_KEY_MENU,
};
class Optimize3DSMenu : public OptionSelectionMenu {
public:
Optimize3DSMenu(TextRectanglePool* text_pool);
~Optimize3DSMenu();
void prepare(float scaling_factor, int view_size_x, int view_size_y, CaptureStatus* capture_status);
void insert_data(CaptureDevice* device);
Optimize3DSMenuOutAction selected_index = Optimize3DSMenuOutAction::OPTIMIZE3DS_MENU_NO_ACTION;
void reset_output_option();
protected:
bool is_option_selectable(int index, int action);
bool is_option_inc_dec(int index);
void set_output_option(int index, int action);
size_t get_num_options();
std::string get_string_option(int index, int action);
float get_option_text_factor(int index);
void class_setup();
private:
int *options_indexes;
size_t num_enabled_options;
};
#endif