mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-18 06:39:18 +02:00
control for battery, pantographs, line breaker, converter and compressor
This commit is contained in:
60
command.cpp
60
command.cpp
@@ -78,14 +78,16 @@ command_relay::command_relay() {
|
||||
/*
|
||||
const int k_AntiSlipping = 21;
|
||||
const int k_Sand = 22;
|
||||
const int k_Main = 23;
|
||||
*/
|
||||
{ user_command::linebreakertoggle, command_target::vehicle },
|
||||
{ user_command::reverserincrease, command_target::vehicle },
|
||||
{ user_command::reverserdecrease, command_target::vehicle },
|
||||
/*
|
||||
const int k_Fuse = 26;
|
||||
const int k_Compressor = 27;
|
||||
const int k_Converter = 28;
|
||||
*/
|
||||
{ user_command::compressortoggle, command_target::vehicle },
|
||||
{ user_command::convertertoggle, command_target::vehicle },
|
||||
/*
|
||||
const int k_MaxCurrent = 29;
|
||||
const int k_CurrentAutoRelay = 30;
|
||||
const int k_BrakeProfile = 31;
|
||||
@@ -107,15 +109,7 @@ const int k_FailedEngineCutOff = 35;
|
||||
{ user_command::moveforwardfast, command_target::entity },
|
||||
{ user_command::movebackfast, command_target::entity },
|
||||
{ user_command::moveupfast, command_target::entity },
|
||||
{ user_command::movedownfast, command_target::entity }
|
||||
/*
|
||||
{ user_command::moveleftfastest, command_target::entity },
|
||||
{ user_command::moverightfastest, command_target::entity },
|
||||
{ user_command::moveforwardfastest, command_target::entity },
|
||||
{ user_command::movebackfastest, command_target::entity },
|
||||
{ user_command::moveupfastest, command_target::entity },
|
||||
{ user_command::movedownfastest, command_target::entity }
|
||||
*/
|
||||
{ user_command::movedownfast, command_target::entity },
|
||||
/*
|
||||
const int k_CabForward = 42;
|
||||
const int k_CabBackward = 43;
|
||||
@@ -129,10 +123,10 @@ const int k_OpenRight = 50;
|
||||
const int k_CloseLeft = 51;
|
||||
const int k_CloseRight = 52;
|
||||
const int k_DepartureSignal = 53;
|
||||
const int k_PantFrontUp = 54;
|
||||
const int k_PantRearUp = 55;
|
||||
const int k_PantFrontDown = 56;
|
||||
const int k_PantRearDown = 57;
|
||||
*/
|
||||
{ user_command::pantographtogglefront, command_target::vehicle },
|
||||
{ user_command::pantographtogglerear, command_target::vehicle },
|
||||
/*
|
||||
const int k_Heating = 58;
|
||||
// const int k_FreeFlyMode= 59;
|
||||
const int k_LeftSign = 60;
|
||||
@@ -147,7 +141,9 @@ const int k_Univ3 = 68;
|
||||
const int k_Univ4 = 69;
|
||||
const int k_EndSign = 70;
|
||||
const int k_Active = 71;
|
||||
const int k_Battery = 72;
|
||||
*/
|
||||
{ user_command::batterytoggle, command_target::vehicle }
|
||||
/*
|
||||
const int k_WalkMode = 73;
|
||||
int const k_DimHeadlights = 74;
|
||||
*/
|
||||
@@ -180,14 +176,16 @@ int const k_DimHeadlights = 74;
|
||||
/*
|
||||
const int k_AntiSlipping = 21;
|
||||
const int k_Sand = 22;
|
||||
const int k_Main = 23;
|
||||
*/
|
||||
"linebreakertoggle",
|
||||
"reverserincrease",
|
||||
"reverserdecrease",
|
||||
/*
|
||||
const int k_Fuse = 26;
|
||||
const int k_Compressor = 27;
|
||||
const int k_Converter = 28;
|
||||
*/
|
||||
"compressortoggle",
|
||||
"convertertoggle",
|
||||
/*
|
||||
const int k_MaxCurrent = 29;
|
||||
const int k_CurrentAutoRelay = 30;
|
||||
const int k_BrakeProfile = 31;
|
||||
@@ -209,15 +207,7 @@ const int k_FailedEngineCutOff = 35;
|
||||
"", //"moveforwardfast",
|
||||
"", //"movebackfast",
|
||||
"", //"moveupfast",
|
||||
"" //"movedownfast"
|
||||
/*
|
||||
"moveleftfastest",
|
||||
"moverightfastest",
|
||||
"moveforwardfastest",
|
||||
"movebackfastest",
|
||||
"moveupfastest",
|
||||
"movedownfastest"
|
||||
*/
|
||||
"", //"movedownfast"
|
||||
/*
|
||||
const int k_CabForward = 42;
|
||||
const int k_CabBackward = 43;
|
||||
@@ -231,10 +221,10 @@ const int k_OpenRight = 50;
|
||||
const int k_CloseLeft = 51;
|
||||
const int k_CloseRight = 52;
|
||||
const int k_DepartureSignal = 53;
|
||||
const int k_PantFrontUp = 54;
|
||||
const int k_PantRearUp = 55;
|
||||
const int k_PantFrontDown = 56;
|
||||
const int k_PantRearDown = 57;
|
||||
*/
|
||||
"pantographtogglefront",
|
||||
"pantographtogglerear",
|
||||
/*
|
||||
const int k_Heating = 58;
|
||||
// const int k_FreeFlyMode= 59;
|
||||
const int k_LeftSign = 60;
|
||||
@@ -249,7 +239,9 @@ const int k_Univ3 = 68;
|
||||
const int k_Univ4 = 69;
|
||||
const int k_EndSign = 70;
|
||||
const int k_Active = 71;
|
||||
const int k_Battery = 72;
|
||||
*/
|
||||
"batterytoggle"
|
||||
/*
|
||||
const int k_WalkMode = 73;
|
||||
int const k_DimHeadlights = 74;
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user