📄 chatselector.cpp
字号:
//this file is part of eMule
//Copyright (C)2002 Merkur ( merkur-@users.sourceforge.net / http://www.emule-project.net )
//
//This program 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 2 of the License, or (at your option) any later version.
//
//This program 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 this program; if not, write to the Free Software
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include "stdafx.h"
#include "emule.h"
#include "ChatSelector.h"
#include "packets.h"
#include "HTRichEditCtrl.h"
#include "emuledlg.h"
#include "Statistics.h"
#include "OtherFunctions.h"
#include "UpDownClient.h"
#include "Preferences.h"
#include "TaskbarNotifier.h"
#include "ListenSocket.h"
#include "ChatWnd.h"
#include "SafeFile.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
#define URLINDICATOR _T("http:|www.|.de |.net |.com |.org |.to |.tk |.cc |.fr |ftp:")
///////////////////////////////////////////////////////////////////////////////
// CChatItem
CChatItem::CChatItem()
{
client = NULL;
log = NULL;
notify = false;
history_pos = 0;
}
CChatItem::~CChatItem()
{
delete log;
}
///////////////////////////////////////////////////////////////////////////////
// CChatSelector
IMPLEMENT_DYNAMIC(CChatSelector, CClosableTabCtrl)
BEGIN_MESSAGE_MAP(CChatSelector, CClosableTabCtrl)
ON_WM_SIZE()
ON_WM_DESTROY()
ON_WM_TIMER()
ON_WM_SYSCOLORCHANGE()
ON_NOTIFY_REFLECT(TCN_SELCHANGE, OnTcnSelchangeChatsel)
ON_BN_CLICKED(IDC_CCLOSE, OnBnClickedCclose)
ON_BN_CLICKED(IDC_CSEND, OnBnClickedCsend)
END_MESSAGE_MAP()
CChatSelector::CChatSelector()
{
m_hwndCloseBtn = NULL;
m_hwndMessageBox = NULL;
m_hwndSendBtn = NULL;
m_lastemptyicon = false;
m_blinkstate = false;
m_Timer = 0;
m_bCloseable = true;
}
CChatSelector::~CChatSelector()
{
}
void CChatSelector::Init()
{
m_hwndCloseBtn = GetParent()->GetDlgItem(IDC_CCLOSE)->m_hWnd;
::SetParent(m_hwndCloseBtn, m_hWnd);
m_hwndSendBtn = GetParent()->GetDlgItem(IDC_CSEND)->m_hWnd;
::SetParent(m_hwndSendBtn, m_hWnd);
m_hwndMessageBox = GetParent()->GetDlgItem(IDC_CMESSAGE)->m_hWnd;
::SetParent(m_hwndMessageBox, m_hWnd);
ModifyStyle(0, WS_CLIPCHILDREN);
SetAllIcons();
VERIFY( (m_Timer = SetTimer(20, 1500, 0)) != NULL );
}
void CChatSelector::OnSysColorChange()
{
CClosableTabCtrl::OnSysColorChange();
SetAllIcons();
}
void CChatSelector::SetAllIcons()
{
CImageList iml;
iml.Create(16, 16, theApp.m_iDfltImageListColorFlags | ILC_MASK, 0, 1);
iml.Add(CTempIconLoader(_T("Chat")));
iml.Add(CTempIconLoader(_T("Message")));
iml.Add(CTempIconLoader(_T("MessagePending")));
SetImageList(&iml);
m_imlChat.DeleteImageList();
m_imlChat.Attach(iml.Detach());
SetPadding(CSize(10, 0));
}
void CChatSelector::UpdateFonts(CFont* pFont)
{
TCITEM item;
item.mask = TCIF_PARAM;
int i = 0;
while (GetItem(i++, &item)){
CChatItem* ci = (CChatItem*)item.lParam;
ci->log->SetFont(pFont);
}
}
CChatItem* CChatSelector::StartSession(CUpDownClient* client, bool show)
{
::SetFocus(m_hwndMessageBox);
if (GetTabByClient(client) != 0xFFFF){
if (show){
SetCurSel(GetTabByClient(client));
ShowChat();
}
return NULL;
}
CChatItem* chatitem = new CChatItem();
chatitem->client = client;
chatitem->log = new CHTRichEditCtrl;
CRect rcChat;
GetChatSize(rcChat);
if (GetItemCount() == 0)
rcChat.top += 20;
chatitem->log->Create(WS_CHILD | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_VSCROLL | ES_MULTILINE | ES_READONLY, rcChat, this, (UINT)-1);
chatitem->log->ModifyStyleEx(0, WS_EX_STATICEDGE, SWP_FRAMECHANGED);
chatitem->log->SendMessage(EM_SETMARGINS, EC_LEFTMARGIN | EC_RIGHTMARGIN, MAKELONG(3, 3));
chatitem->log->SetEventMask(chatitem->log->GetEventMask() | ENM_LINK);
chatitem->log->SetFont(&theApp.emuledlg->m_fontHyperText);
chatitem->log->SetProfileSkinKey(_T("Chat"));
chatitem->log->ApplySkin();
CTime theTime = CTime::GetCurrentTime();
CString sessions = GetResString(IDS_CHAT_START) + client->GetUserName() + CString(_T(" - ")) + theTime.Format(_T("%c")) + _T("\n");
chatitem->log->AppendKeyWord(sessions, RGB(255,0,0));
client->SetChatState(MS_CHATTING);
CString name;
if (client->GetUserName() != NULL)
name = client->GetUserName();
else
name.Format(_T("(%s)"), GetResString(IDS_UNKNOWN));
chatitem->log->SetTitle(name);
TCITEM newitem;
newitem.mask = TCIF_PARAM | TCIF_TEXT | TCIF_IMAGE;
newitem.lParam = (LPARAM)chatitem;
newitem.pszText = const_cast<LPTSTR>((LPCTSTR)name);
newitem.iImage = 0;
int iItemNr = InsertItem(GetItemCount(), &newitem);
if (show || IsWindowVisible()){
SetCurSel(iItemNr);
ShowChat();
}
return chatitem;
}
uint16 CChatSelector::GetTabByClient(CUpDownClient* client)
{
for (int i = 0; i < GetItemCount(); i++){
TCITEM cur_item;
cur_item.mask = TCIF_PARAM;
if (GetItem(i, &cur_item) && ((CChatItem*)cur_item.lParam)->client == client)
return i;
}
return (uint16)-1;
}
CChatItem* CChatSelector::GetItemByClient(CUpDownClient* client)
{
for (int i = 0; i < GetItemCount(); i++){
TCITEM cur_item;
cur_item.mask = TCIF_PARAM;
if (GetItem(i, &cur_item) && ((CChatItem*)cur_item.lParam)->client == client)
return (CChatItem*)cur_item.lParam;
}
return NULL;
}
void CChatSelector::ProcessMessage(CUpDownClient* sender, char* message)
{
sender->IncMessagesReceived();
CString strMessage = CString(message).MakeLower();
CString resToken;
int curPos = 0;
resToken = thePrefs.GetMessageFilter().Tokenize(_T("|"), curPos);
while (resToken != _T(""))
{
if (strMessage.Find(resToken.MakeLower()) > -1)
return;
resToken = thePrefs.GetMessageFilter().Tokenize(_T("|"), curPos);
}
CChatItem* ci = GetItemByClient(sender);
// advanced spamfilter check
if (IsSpam(strMessage, sender))
{
if (!sender->IsSpammer()){
if (thePrefs.GetVerbose())
theApp.emuledlg->AddDebugLogLine(false, _T("'%s' has been marked as spammer"), sender->GetUserName());
}
sender->SetSpammer(true);
if (ci)
EndSession(sender);
return;
}
bool isNewChatWindow = false;
if (!ci)
{
if (GetItemCount() >= thePrefs.GetMsgSessionsMax())
return;
ci = StartSession(sender, false);
isNewChatWindow = true;
}
if (thePrefs.GetIRCAddTimestamp())
AddTimeStamp(ci);
ci->log->AppendKeyWord(sender->GetUserName(), RGB(50,200,250));
ci->log->AppendText(_T(": "));
ci->log->AppendText(CString(message) + _T("\n"));
int iTabItem = GetTabByClient(sender);
if (GetCurSel() == iTabItem && GetParent()->IsWindowVisible())
{
// chat window is already visible
;
}
else if (GetCurSel() != iTabItem)
{
// chat window is already visible, but tab is not selected
ci->notify = true;
}
else
{
ci->notify = true;
if (isNewChatWindow || thePrefs.GetNotifierPopsEveryChatMsg())
theApp.emuledlg->ShowNotifier(GetResString(IDS_TBN_NEWCHATMSG) + _T(" ") + CString(sender->GetUserName()) + _T(":'") + CString(message) + _T("'\n"), TBN_CHAT);
isNewChatWindow = false;
}
}
bool CChatSelector::SendMessage(LPCTSTR message)
{
USES_CONVERSION;
CChatItem* ci = GetCurrentChatItem();
if (!ci)
return false;
if (ci->history.GetCount() == thePrefs.GetMaxChatHistoryLines())
ci->history.RemoveAt(0);
ci->history.Add(CString(message));
ci->history_pos = ci->history.GetCount();
// advance spamfilter stuff
ci->client->IncMessagesSent();
ci->client->SetSpammer(false);
if (ci->client->GetChatState() == MS_CONNECTING)
return false;
if (thePrefs.GetIRCAddTimestamp())
AddTimeStamp(ci);
if (ci->client->socket && ci->client->socket->IsConnected())
{
CStringA strMsgA(message);
uint16 mlen = strMsgA.GetLength();
Packet* packet = new Packet(OP_MESSAGE, mlen+2);
PokeUInt16(packet->pBuffer, mlen);
memcpy(packet->pBuffer + 2, strMsgA, mlen);
theStats.AddUpDataOverheadOther(packet->size);
ci->client->socket->SendPacket(packet, true, true);
ci->log->AppendKeyWord(A2CT(thePrefs.GetUserNick()), RGB(1,180,20));
ci->log->AppendText(_T(": "));
ci->log->AppendText(CString(message) + _T("\n"));
}
else
{
ci->log->AppendKeyWord(_T("*** ") + GetResString(IDS_CONNECTING), RGB(255,0,0));
ci->strMessagePendingA = message;
ci->client->SetChatState(MS_CONNECTING);
ci->client->TryToConnect();
}
return true;
}
void CChatSelector::ConnectingResult(CUpDownClient* sender, bool success)
{
USES_CONVERSION;
CChatItem* ci = GetItemByClient(sender);
if (!ci)
return;
ci->client->SetChatState(MS_CHATTING);
if (!success){
if (!ci->strMessagePendingA.IsEmpty()){
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -