1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
#pragma once
#include "model/model.h"
#include "model/animation/modelanimation.h"
#include "species_defs/species_defs.h"
enum class LabTurretAimType {
RANDOM,
UVEC,
INITIAL,
};
enum class BayMode {
Arrival,
Departure,
};
class LabUi {
public:
bool show_thrusters = false; // So that it can be toggled on/off based on the lab mode being changed
void create_ui();
void object_changed();
void closeUi();
private:
void build_options_menu();
void build_ship_list() const;
void build_species_entry(const species_info &species_def, int species_idx) const;
void build_weapon_list() const;
void build_weapon_subtype_list() const;
static void build_object_list();
static void build_asteroid_list();
static void build_debris_list();
void build_background_list() const;
void show_render_options();
void show_object_options() const;
void show_object_selector() const;
void show_background_selector() const;
void build_toolbar_entries();
void build_texture_quality_combobox();
void build_antialiasing_combobox();
void build_tone_mapper_combobox();
void build_model_info_box(ship_info* sip, polymodel* pm) const;
void build_subsystem_list(object* objp, ship* shipp) const;
void build_subsystem_list_entry(SCP_string& subsys_name,
SCP_vector<bool>& show_subsys,
const size_t& subsys_index,
ship_subsys* cur_subsys,
object* objp,
ship* shipp) const;
void build_weapon_options(ship* shipp) const;
void build_primary_weapon_combobox(SCP_string& text,
weapon_info* wip,
int& primary_slot) const;
void build_secondary_weapon_combobox(SCP_string& text, weapon_info* wip, int& secondary_slot) const;
static void build_dock_test_options(ship* shipp);
static void build_bay_test_options(ship_info* sip);
void build_animation_options(ship* shipp, ship_info* sip) const;
void create_afterburner_animation_node(
const SCP_vector<animation::ModelAnimationSet::RegisteredTrigger>& anim_triggers) const;
void create_secondary_weapon_anim_node(
ship* shipp,
ship_info* sip) const;
void create_primary_weapon_anim_node(
ship* shipp,
ship_info* sip) const;
void build_model_info_box_actual(ship_info* sip, polymodel* pm) const;
void build_team_color_combobox() const;
static void reset_animations();
void do_triggered_anim(animation::ModelAnimationTriggerType type,
const SCP_string& name,
bool direction,
int subtype = animation::ModelAnimationSet::SUBTYPE_DEFAULT) const;
void maybe_show_animation_category(const SCP_vector<animation::ModelAnimationSet::RegisteredTrigger>& anim_triggers,
animation::ModelAnimationTriggerType trigger_type,
SCP_string label) const;
// if this is true, the displayed object has changed and so every piece of cached data related to
// the object must be invalidated
bool rebuild_after_object_change = false;
// these flags track the state of open windows. We start with the object selector open and all other
// subdialogs closed
bool show_render_options_dialog = false;
bool show_object_selection_dialog = true;
bool show_object_options_dialog = false;
bool show_background_selection_dialog = true;
// used to track the "Close Lab" function
bool close_lab = false;
// various settings from the graphics dialog
bool enable_model_rotation = false;
bool show_insignia = false;
bool show_damage_lightning = false;
bool animate_subsystems = false;
bool hide_post_processing = false;
bool no_particles = false;
bool diffuse_map = true;
bool glow_map = true;
bool spec_map = true;
bool reflect_map = true;
bool env_map = true;
bool normal_map = true;
bool height_map = true;
bool misc_map = true;
bool ao_map = true;
bool no_glowpoints = false;
bool use_wireframe_rendering = false;
bool no_lighting = false;
bool show_full_detail = false;
bool show_afterburners = false;
bool show_weapons = false;
bool show_emissive_lighting = false;
bool show_particles = true;
std::optional<vec3d> volumetrics_pos_backup = std::nullopt;
};
|