75 lines
No EOL
2 KiB
C#
75 lines
No EOL
2 KiB
C#
using Server.Gumps;
|
|
using Server.Mobiles;
|
|
using Server.Network;
|
|
|
|
namespace Server.Factions;
|
|
|
|
public class VoteGump : FactionGump
|
|
{
|
|
private readonly Election m_Election;
|
|
private readonly PlayerMobile m_From;
|
|
|
|
public VoteGump(PlayerMobile from, Election election) : base(50, 50)
|
|
{
|
|
m_From = from;
|
|
m_Election = election;
|
|
|
|
var canVote = election.CanVote(from);
|
|
|
|
AddPage(0);
|
|
|
|
AddBackground(0, 0, 420, 350, 5054);
|
|
AddBackground(10, 10, 400, 330, 3000);
|
|
|
|
AddHtmlText(20, 20, 380, 20, election.Faction.Definition.Header, false, false);
|
|
|
|
if (canVote)
|
|
{
|
|
AddHtmlLocalized(20, 60, 380, 20, 1011428); // VOTE FOR LEADERSHIP
|
|
}
|
|
else
|
|
{
|
|
AddHtmlLocalized(20, 60, 380, 20, 1038032); // You have already voted in this election.
|
|
}
|
|
|
|
for (var i = 0; i < election.Candidates.Count; ++i)
|
|
{
|
|
var cd = election.Candidates[i];
|
|
|
|
if (canVote)
|
|
{
|
|
AddButton(20, 100 + i * 20, 4005, 4007, i + 1);
|
|
}
|
|
|
|
AddLabel(55, 100 + i * 20, 0, cd.Mobile.Name);
|
|
AddLabel(300, 100 + i * 20, 0, cd.Votes.ToString());
|
|
}
|
|
|
|
AddButton(20, 310, 4005, 4007, 0);
|
|
AddHtmlLocalized(55, 310, 100, 20, 1011012); // CANCEL
|
|
}
|
|
|
|
public override void OnResponse(NetState sender, in RelayInfo info)
|
|
{
|
|
if (info.ButtonID == 0)
|
|
{
|
|
m_From.SendGump(new FactionStoneGump(m_From, m_Election.Faction));
|
|
}
|
|
else
|
|
{
|
|
if (!m_Election.CanVote(m_From))
|
|
{
|
|
return;
|
|
}
|
|
|
|
var index = info.ButtonID - 1;
|
|
|
|
if (index >= 0 && index < m_Election.Candidates.Count)
|
|
{
|
|
m_Election.Candidates[index].Voters.Add(new Voter(m_From, m_Election.Candidates[index].Mobile));
|
|
}
|
|
|
|
m_From.SendGump(new VoteGump(m_From, m_Election));
|
|
}
|
|
}
|
|
} |