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 120 121 122 123
|
/*
RailControl - Model Railway Control Software
Copyright (c) 2017-2025 by Teddy / Dominik Mahrer - www.railcontrol.org
RailControl is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3, or (at your option) any
later version.
RailControl is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with RailControl; see the file LICENCE. If not see
<http://www.gnu.org/licenses/>.
*/
#include "DataModel/Switch.h"
#include "Server/Web/HtmlTagSwitch.h"
using std::string;
using std::to_string;
namespace Server { namespace Web
{
HtmlTagSwitch::HtmlTagSwitch(const DataModel::Switch* mySwitch)
: HtmlTagLayoutItem(dynamic_cast<const DataModel::LayoutItem*>(mySwitch))
{
const string& switchName = mySwitch->GetName();
string idText = to_string(mySwitch->GetID());
imageDiv.AddClass("switch_item");
const DataModel::AccessoryType type = mySwitch->GetAccessoryType();
switch (type)
{
case DataModel::SwitchTypeLeft:
image = "<polygon points=\"15,30 21,36 15,36\" fill=\"white\" />"
"<polygon points=\"0,15 15,30 15,36 0,21\" fill=\"gray\" class=\"turnout\"/>"
"<polygon points=\"15,0 21,0 21,36 15,30\" fill=\"gray\" class=\"straight\"/>";
imageDiv.AddAttribute("onclick", "return onClickSwitch(event, " + idText + ");");
break;
case DataModel::SwitchTypeRight:
image = "<polygon points=\"21,30 21,36 15,36\" fill=\"white\" />"
"<polygon points=\"21,30 36,15 36,21 21,36\" fill=\"gray\" class=\"turnout\"/>"
"<polygon points=\"15,0 21,0 21,30 15,36\" fill=\"gray\" class=\"straight\"/>";
imageDiv.AddAttribute("onclick", "return onClickSwitch(event, " + idText + ");");
break;
case DataModel::SwitchTypeThreeWay:
image = "<polygon points=\"18,33 21,36 15,36\" fill=\"white\" />"
"<polygon points=\"0,15 15,30 15,36 0,21\" fill=\"gray\" class=\"turnout\"/>"
"<polygon points=\"15,36 15,30 18,33\" fill=\"gray\" class=\"turnout straight\"/>"
"<polygon points=\"15,0 21,0 21,30 18,33 15,30\" fill=\"gray\" class=\"straight\"/>"
"<polygon points=\"21,30 21,36 18,33\" fill=\"gray\" class=\"straight third\"/>"
"<polygon points=\"21,30 36,15 36,21 21,36\" fill=\"gray\" class=\"third\"/>";
AddOnClickMenuEntry(switchName);
AddOnClickMenuEntry(Languages::TextSwitchStateLeft, "fireRequestAndForget('/?cmd=switchstate&switch=" + idText + "&state=turnout');", "menu_turnout");
AddOnClickMenuEntry(Languages::TextSwitchStateStraight, "fireRequestAndForget('/?cmd=switchstate&switch=" + idText + "&state=straight');", "menu_straight");
AddOnClickMenuEntry(Languages::TextSwitchStateRight, "fireRequestAndForget('/?cmd=switchstate&switch=" + idText + "&state=third');", "menu_third");
break;
case DataModel::SwitchTypeMaerklinLeft:
image = "<polygon points=\"0,15 9,24 9,30 0,21\" fill=\"white\" />"
"<polygon points=\"15,0 21,0 21,24 15,18\" fill=\"white\" />"
"<polygon points=\"27,42 36,51 36,57 27,48\" fill=\"white\" />"
"<polygon points=\"15,48 21,54 21,72 15,72\" fill=\"white\" />"
"<polygon points=\"3,24 9,30 9,42 15,48 15,54 3,42\" fill=\"gray\" class=\"turnout\" />"
"<polygon points=\"21,18 33,30 33,48 27,42 27,30 21,24\" fill=\"gray\" class=\"turnout\" />"
"<polygon points=\"9,24 15,30 15,18 21,24 21,36 27,42 27,48 21,42 21,54 15,48 15,36 9,30\" fill=\"gray\" class=\"straight\" />";
imageDiv.AddAttribute("onclick", "return onClickSwitch(event, " + idText + ");");
break;
case DataModel::SwitchTypeMaerklinRight:
image = "<polygon points=\"0,51 9,42 9,48 0,57\" fill=\"white\" />"
"<polygon points=\"15,0 21,0 21,18 15,24\" fill=\"white\" />"
"<polygon points=\"27,24 36,15 36,21 27,30\" fill=\"white\" />"
"<polygon points=\"15,54 21,48 21,72 15,72\" fill=\"white\" />"
"<polygon points=\"3,48 3,30 15,18 15,24 9,30 9,42\" fill=\"gray\" class=\"turnout\" />"
"<polygon points=\"21,48 27,42 27,30 33,24 33,42 21,54\" fill=\"gray\" class=\"turnout\" />"
"<polygon points=\"9,42 15,36 15,24 21,18 21,30 27,24 27,30 21,36 21,48 15,54 15,42 9,48\" fill=\"gray\" class=\"straight\" />";
imageDiv.AddAttribute("onclick", "return onClickSwitch(event, " + idText + ");");
break;
default:
break;
}
string stateClass;
const DataModel::AccessoryState state = mySwitch->GetAccessoryState();
switch (state)
{
case DataModel::SwitchStateTurnout:
stateClass = "switch_turnout";
break;
case DataModel::SwitchStateStraight:
stateClass = "switch_straight";
break;
case DataModel::SwitchStateThird:
stateClass = "switch_third";
break;
default:
break;
}
imageDiv.AddClass(stateClass);
onClickMenuDiv.AddClass(stateClass);
AddToolTip(switchName + " (addr=" + to_string(mySwitch->GetAddress()) + ")");
AddContextMenuEntry(switchName);
AddContextMenuEntry(Languages::TextReleaseSwitch, "fireRequestAndForget('/?cmd=switchrelease&switch=" + idText + "');");
AddContextMenuEntry(Languages::TextEditSwitch, "loadPopup('/?cmd=switchedit&switch=" + idText + "');");
AddContextMenuEntry(Languages::TextDeleteSwitch, "loadPopup('/?cmd=switchaskdelete&switch=" + idText + "');");
FinishInit();
}
}} // namespace Server::Web
|