CheatMenuSA/src/Visual.h

41 lines
1.4 KiB
C
Raw Normal View History

2020-12-02 16:19:16 -05:00
#pragma once
class Visual
{
private:
2021-06-18 12:49:11 -04:00
inline static bool m_bLockWeather;
inline static int m_nBacWeatherType;
2020-12-02 16:19:16 -05:00
// Timecyc
2021-06-18 12:49:11 -04:00
inline static int m_nTimecycHour = 8;
inline static std::vector<std::string> m_WeatherNames
2021-03-02 14:18:37 -05:00
{
2021-06-18 12:49:11 -04:00
"EXTRASUNNY LA", "SUNNY LA", "EXTRASUNNY SMOG LA", "SUNNY SMOG LA", "CLOUDY LA", "SUNNY SF", "EXTRASUNNY SF",
"CLOUDY SF", "RAINY SF", "FOGGY SF",
"SUNNY VEGAS", "EXTRASUNNY VEGAS", "CLOUDY VEGAS", "EXTRASUNNY COUNTRYSIDE", "SUNNY COUNTRYSIDE",
"CLOUDY COUNTRYSIDE", "RAINY COUNTRYSIDE",
"EXTRASUNNY DESERT", "SUNNY DESERT", "SANDSTORM DESERT", "UNDERWATER", "EXTRACOLOURS 1", "EXTRACOLOURS 2"
2021-03-02 14:18:37 -05:00
};
2020-12-02 16:19:16 -05:00
static void GenerateTimecycFile();
2021-04-03 18:12:28 -04:00
static int GetCurrentHourTimeId(int hour = -1);
2021-02-24 16:54:45 -05:00
static bool TimeCycColorEdit3(const char* label, uchar* r, uchar* g, uchar* b, ImGuiColorEditFlags flags = 0);
2021-06-18 12:49:11 -04:00
static bool TimeCycColorEdit4(const char* label, uchar* r, uchar* g, uchar* b, uchar* a,
ImGuiColorEditFlags flags = 0);
template <typename T>
2020-12-02 16:19:16 -05:00
static void TimecycSlider(const char* label, T* data, int min, int max);
public:
Visual();
2021-02-24 16:54:45 -05:00
static void Draw();
2020-12-02 16:19:16 -05:00
};
2021-06-18 12:49:11 -04:00
template <typename T>
void Visual::TimecycSlider(const char* label, T* ptr, int min, int max)
2020-12-02 16:19:16 -05:00
{
int val = 23 * GetCurrentHourTimeId() + CWeather::OldWeatherType;
2021-06-18 12:49:11 -04:00
T* arr = static_cast<T*>(patch::GetPointer(int(ptr)));
int a = arr[val];
2020-12-02 16:19:16 -05:00
if (ImGui::SliderInt(label, &a, min, max))
2021-06-18 12:49:11 -04:00
arr[val] = static_cast<T>(a);
}