本文整理汇总了C#中Winter.WinterBot.ClearChat方法的典型用法代码示例。如果您正苦于以下问题:C# WinterBot.ClearChat方法的具体用法?C# WinterBot.ClearChat怎么用?C# WinterBot.ClearChat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Winter.WinterBot
的用法示例。
在下文中一共展示了WinterBot.ClearChat方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ClearChat
private void ClearChat(WinterBot sender, TwitchUser user, string clearReason)
{
bool shouldMessage = !string.IsNullOrEmpty(clearReason);
var now = DateTime.Now;
TimeoutCount timeout;
if (!m_timeouts.TryGetValue(user, out timeout))
{
timeout = m_timeouts[user] = new TimeoutCount(now);
}
else
{
shouldMessage &= (DateTime.Now > timeout.LastTimeout) && (DateTime.Now - timeout.LastTimeout).TotalMinutes > 60;
int curr = timeout.Count;
int diff = (int)(now - timeout.LastTimeout).TotalMinutes / 15;
if (diff > 0)
curr -= diff;
if (curr < 0)
curr = 0;
timeout.Count = curr + 1;
}
timeout.LastTimeout = now;
if (!m_chatOptions.ShouldTimeout(user))
timeout.Count = 1;
int duration = 0;
switch (timeout.Count)
{
case 1:
case 2:
if (shouldMessage)
sender.Send(MessageType.Timeout, "{0}: {1} (This is not a timeout.)", user.Name, clearReason);
sender.ClearChat(user);
break;
case 3:
duration = 5;
sender.Send(MessageType.Timeout, "{0}: {1} ({2} minute timeout.)", user.Name, clearReason, duration);
sender.Timeout(user, duration * 60);
timeout.LastTimeout = now.AddMinutes(duration);
break;
case 4:
duration = 10;
sender.Send(MessageType.Timeout, "{0}: {1} ({2} minute timeout.)", user.Name, clearReason, duration);
sender.Timeout(user, duration * 60);
timeout.LastTimeout = now.AddMinutes(duration);
break;
default:
Debug.Assert(timeout.Count > 0);
sender.Send(MessageType.Timeout, "{0}: {1} (8 hour timeout.)", user.Name, clearReason);
sender.Timeout(user, 8 * 60 * 60);
timeout.LastTimeout = now.AddHours(8);
break;
}
}