mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
73 lines
2.1 KiB
C++
73 lines
2.1 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 "application/uilayer.h"
|
|
#include "application/driveruipanels.h"
|
|
#include "input/command.h"
|
|
|
|
#include "widgets/vehiclelist.h"
|
|
#include "widgets/vehicleparams.h"
|
|
#include "widgets/map.h"
|
|
#include "widgets/time.h"
|
|
#include "widgets/trainingcard.h"
|
|
#include "widgets/perfgraphs.h"
|
|
#include "widgets/cameraview_extcam.h"
|
|
|
|
class driver_ui : public ui_layer {
|
|
|
|
public:
|
|
// constructors
|
|
driver_ui();
|
|
// methods
|
|
void showDebugUI() override;
|
|
// potentially processes provided input key. returns: true if the input was processed, false otherwise
|
|
bool
|
|
on_key( int const Key, int const Action ) override;
|
|
// potentially processes provided mouse movement. returns: true if the input was processed, false otherwise
|
|
bool
|
|
on_cursor_pos( double const Horizontal, double const Vertical ) override;
|
|
// potentially processes provided mouse button. returns: true if the input was processed, false otherwise
|
|
bool
|
|
on_mouse_button( int const Button, int const Action ) override;
|
|
// updates state of UI elements
|
|
void
|
|
update() override;
|
|
|
|
protected:
|
|
void render_menu_contents() override;
|
|
|
|
|
|
private:
|
|
// methods
|
|
// sets visibility of the cursor
|
|
void
|
|
set_cursor( bool const Visible );
|
|
// render() subclass details
|
|
void
|
|
render_() override;
|
|
|
|
// members
|
|
drivingaid_panel m_aidpanel { "Driving Aid", false };
|
|
scenario_panel m_scenariopanel { "Scenario", false };
|
|
timetable_panel m_timetablepanel { "Timetable", false };
|
|
debug_panel m_debugpanel { "Debug Data", false };
|
|
transcripts_panel m_transcriptspanel { "Transcripts", true }; // voice transcripts
|
|
trainingcard_panel m_trainingcardpanel;
|
|
perfgraph_panel m_perfgraphpanel;
|
|
bool m_paused { false };
|
|
|
|
command_relay m_relay;
|
|
ui::vehiclelist_panel m_vehiclelist { ui::vehiclelist_panel(*this) };
|
|
ui::map_panel m_mappanel;
|
|
ui::time_panel m_timepanel;
|
|
ui::cameraview_panel m_cameraviewpanel;
|
|
};
|