mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
94 lines
2.5 KiB
C++
94 lines
2.5 KiB
C++
/*
|
|
This Source Code Form is subject to the
|
|
terms of the Mozilla Public License, v.
|
|
2.0. If a copy of the MPL was not
|
|
distributed with this file, You can
|
|
obtain one at
|
|
http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "uilayer.h"
|
|
#include "classes.h"
|
|
|
|
class drivingaid_panel : public ui_panel {
|
|
|
|
public:
|
|
drivingaid_panel( std::string const Name, bool const Isopen )
|
|
: ui_panel( Name, Isopen )
|
|
{}
|
|
|
|
void update() override;
|
|
|
|
bool is_expanded { false };
|
|
};
|
|
|
|
class timetable_panel : public ui_panel {
|
|
|
|
public:
|
|
timetable_panel( std::string const Name, bool const Isopen )
|
|
: ui_panel( Name, Isopen ) {}
|
|
|
|
void update() override;
|
|
|
|
bool is_expanded{ false };
|
|
};
|
|
|
|
class debug_panel : public ui_panel {
|
|
|
|
public:
|
|
debug_panel( std::string const Name, bool const Isopen )
|
|
: ui_panel( Name, Isopen ) {}
|
|
|
|
void update() override;
|
|
void render() override;
|
|
|
|
private:
|
|
// types
|
|
struct input_data {
|
|
TTrain const *train;
|
|
TDynamicObject const *controlled;
|
|
TCamera const *camera;
|
|
TDynamicObject const *vehicle;
|
|
TMoverParameters const *mover;
|
|
TController const *mechanik;
|
|
};
|
|
// methods
|
|
// generate and send section data to provided output
|
|
void update_section_vehicle( std::vector<text_line> &Output );
|
|
void update_section_engine( std::vector<text_line> &Output );
|
|
void update_section_ai( std::vector<text_line> &Output );
|
|
void update_section_scantable( std::vector<text_line> &Output );
|
|
void update_section_scenario( std::vector<text_line> &Output );
|
|
void update_section_eventqueue( std::vector<text_line> &Output );
|
|
void update_section_camera( std::vector<text_line> &Output );
|
|
void update_section_renderer( std::vector<text_line> &Output );
|
|
// renders provided lines, under specified collapsing header
|
|
void render_section( std::string const &Header, std::vector<text_line> const &Lines );
|
|
// members
|
|
input_data m_input;
|
|
std::vector<text_line>
|
|
m_vehiclelines,
|
|
m_enginelines,
|
|
m_ailines,
|
|
m_scantablelines,
|
|
m_cameralines,
|
|
m_scenariolines,
|
|
m_eventqueuelines,
|
|
m_rendererlines;
|
|
int tprev { 0 }; // poprzedni czas
|
|
double VelPrev { 0.0 }; // poprzednia prędkość
|
|
double Acc { 0.0 }; // przyspieszenie styczne
|
|
};
|
|
|
|
class transcripts_panel : public ui_panel {
|
|
|
|
public:
|
|
transcripts_panel( std::string const Name, bool const Isopen )
|
|
: ui_panel( Name, Isopen ) {}
|
|
|
|
void update() override;
|
|
void render() override;
|
|
};
|