ModernUO/Projects/UOContent/Engines/Help/SpeechLogGump.cs
Kamron Batman 7bd5a853a3
feat: Adds size/style support to gump builders, optimizes EscapeHtml (#2257)
> [!IMPORTANT]
> **Developer Note**
> THIS IS A BREAKING CHANGE TO THE NEW API GUMP.
> Please give us feedback in [discord ](https://muo.gg/discord) if you have issues, need help, or have ideas for a better API change!

### Summary

* Adds support for size/style to dynamic/static builder.
* Drastically simplifies the dynamic/static builder api for AddHtml.
* Cleans up some legacy gump files.
2025-11-23 11:35:31 -08:00

130 lines
3.6 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
using Server.Accounting;
using Server.Gumps;
using Server.Network;
namespace Server.Engines.Help
{
public class SpeechLogGump : Gump
{
public static readonly int MaxEntriesPerPage = 30;
private readonly List<SpeechLogEntry> m_Log;
private readonly int m_Page;
private readonly Mobile m_Player;
public SpeechLogGump(Mobile player, SpeechLog log)
: this(player, new List<SpeechLogEntry>(log))
{
}
public SpeechLogGump(Mobile player, List<SpeechLogEntry> log) : this(
player,
log,
(log.Count - 1) / MaxEntriesPerPage
)
{
}
public SpeechLogGump(Mobile player, List<SpeechLogEntry> log, int page)
: base(500, 30)
{
m_Player = player;
m_Log = log;
m_Page = page;
AddImageTiled(0, 0, 300, 425, 0xA40);
AddAlphaRegion(1, 1, 298, 423);
var playerName = player.Name;
var playerAccount = player.Account is Account ? player.Account.Username : "???";
AddHtml(
10,
10,
280,
20,
Html.Center($"SPEECH LOG - {playerName} (<i>{playerAccount.FixHtmlFormattable()}</i>)", 0xA0A0FF)
);
var lastPage = (log.Count - 1) / MaxEntriesPerPage;
string sLog;
if (page < 0 || page > lastPage)
{
sLog = "";
}
else
{
var max = log.Count - (lastPage - page) * MaxEntriesPerPage;
var min = Math.Max(max - MaxEntriesPerPage, 0);
var builder = new StringBuilder();
for (var i = min; i < max; i++)
{
var entry = log[i];
var m = entry.From;
var name = m.Name;
var account = m.Account is Account ? m.Account.Username : "???";
var speech = entry.Speech;
if (i != min)
{
builder.Append("<br>");
}
builder.Append($"<u>{name}</u> (<i>{account.FixHtml()}</i>): {speech.FixHtml()}");
}
sLog = builder.ToString();
}
AddHtml(10, 40, 280, 350, sLog, false, true);
if (page > 0)
{
AddButton(10, 395, 0xFAE, 0xFB0, 1); // Previous page
}
AddLabel(45, 395, 0x481, $"Current page: {page + 1}/{lastPage + 1}");
if (page < lastPage)
{
AddButton(261, 395, 0xFA5, 0xFA7, 2); // Next page
}
}
public override void OnResponse(NetState sender, in RelayInfo info)
{
var from = sender.Mobile;
switch (info.ButtonID)
{
case 1: // Previous page
{
if (m_Page - 1 >= 0)
{
from.SendGump(new SpeechLogGump(m_Player, m_Log, m_Page - 1));
}
break;
}
case 2: // Next page
{
if ((m_Page + 1) * MaxEntriesPerPage < m_Log.Count)
{
from.SendGump(new SpeechLogGump(m_Player, m_Log, m_Page + 1));
}
break;
}
}
}
}
}