This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/BigBaseV2/src/gui/tab_bar/tab_world.cpp

68 lines
2.0 KiB
C++

#include "tab_bar.hpp"
namespace big
{
static int clock[3];
void tabbar::render_world()
{
if (ImGui::BeginTabItem("World"))
{
ImGui::Text("Set Local Time:");
if (ImGui::InputInt3(": H:M:s", clock))
{
QUEUE_JOB_BEGIN_CLAUSE()
{
CLOCK::SET_CLOCK_TIME(clock[0], clock[1], clock[2]);
}QUEUE_JOB_END_CLAUSE
}
ImGui::Text("Set Local Weather:");
if (ImGui::BeginCombo("##set_local_weather", weather_names[g_temp.weather_type]))
{
for (uint8_t i = 0; i < IM_ARRAYSIZE(weather_names); i++)
{
bool is_selected = (g_temp.weather_type == i);
if (ImGui::Selectable(weather_names[i], is_selected))
g_temp.weather_type = i;
if (is_selected)
ImGui::SetItemDefaultFocus();
}
ImGui::EndCombo();
}
if (ImGui::Button("Set Weather"))
{
QUEUE_JOB_BEGIN_CLAUSE(=)
{
MISC::SET_OVERRIDE_WEATHER(weather_types[g_temp.weather_type]);
MISC::SET_WEATHER_TYPE_NOW_PERSIST(weather_types[g_temp.weather_type]);
}QUEUE_JOB_END_CLAUSE
}
ImGui::Separator();
if (ImGui::Checkbox("Population Modifiers", g_settings.options["population_modifiers"].get<bool*>()))
g_settings.save();
if (g_settings.options["population_modifiers"].get<bool>())
{
const double min = 0., max = 2.;
ImGui::Text("Pedestrian Population");
if (ImGui::SliderScalar("##ped_pop", ImGuiDataType_Double, g_settings.options["pedestrian_population"].get<double*>(), &min, &max))
g_settings.save();
ImGui::Text("Parked Vehicle Density:");
if (ImGui::SliderScalar("##parked_veh_density", ImGuiDataType_Double, g_settings.options["parked_vehicle_density"].get<double*>(), &min, &max))
g_settings.save();
ImGui::Text("Vehicle Density:");
if (ImGui::SliderScalar("##veh_density", ImGuiDataType_Double, g_settings.options["vehicle_density"].get<double*>(), &min, &max))
g_settings.save();
}
ImGui::EndTabItem();
}
}
}