diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-27 13:29:32 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-27 13:29:32 +0000 |
commit | 7d5177b035aed270dc6e9f4e7a2692597abb9230 (patch) | |
tree | c80c6709509cb888f1c298327cea36ffe35987a0 /protocols/IRCG/src/output.cpp | |
parent | 74d73e97add44364f5f000d23e79b2f12fc8833d (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@7913 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IRCG/src/output.cpp')
-rw-r--r-- | protocols/IRCG/src/output.cpp | 99 |
1 files changed, 50 insertions, 49 deletions
diff --git a/protocols/IRCG/src/output.cpp b/protocols/IRCG/src/output.cpp index 6a97f45baf..c67d884aaf 100644 --- a/protocols/IRCG/src/output.cpp +++ b/protocols/IRCG/src/output.cpp @@ -21,75 +21,75 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "irc.h"
-static CMString FormatOutput (const CIrcMessage* pmsg)
+static CMString FormatOutput(const CIrcMessage* pmsg)
{
CMString sMessage;
- if ( pmsg->m_bIncoming ) { // Is it an incoming message?
- if ( pmsg->sCommand == _T("WALLOPS") && pmsg->parameters.getCount() > 0 ) {
+ if (pmsg->m_bIncoming) { // Is it an incoming message?
+ if (pmsg->sCommand == _T("WALLOPS") && pmsg->parameters.getCount() > 0) {
TCHAR temp[200]; *temp = '\0';
mir_sntprintf(temp, SIZEOF(temp), TranslateT("WallOps from %s: "), pmsg->prefix.sNick.c_str());
sMessage = temp;
- for ( int i=0; i < (int)pmsg->parameters.getCount(); i++ ) {
+ for (int i = 0; i < (int)pmsg->parameters.getCount(); i++) {
sMessage += pmsg->parameters[i];
- if (i != pmsg->parameters.getCount()-1)
+ if (i != pmsg->parameters.getCount() - 1)
sMessage += _T(" ");
}
goto THE_END;
}
-
- if ( pmsg->sCommand == _T("INVITE") && pmsg->parameters.getCount() > 1 ) {
+
+ if (pmsg->sCommand == _T("INVITE") && pmsg->parameters.getCount() > 1) {
TCHAR temp[256]; *temp = '\0';
mir_sntprintf(temp, SIZEOF(temp), TranslateT("%s invites you to %s"), pmsg->prefix.sNick.c_str(), pmsg->parameters[1].c_str());
sMessage = temp;
- for ( int i=2; i < (int)pmsg->parameters.getCount(); i++ ) {
+ for (int i = 2; i < (int)pmsg->parameters.getCount(); i++) {
sMessage += _T(": ") + pmsg->parameters[i];
- if ( i != pmsg->parameters.getCount()-1 )
+ if (i != pmsg->parameters.getCount() - 1)
sMessage += _T(" ");
}
goto THE_END;
}
-
- int index = StrToInt( pmsg->sCommand.c_str());
- if ( index == 301 && pmsg->parameters.getCount() > 0 ) {
+
+ int index = StrToInt(pmsg->sCommand.c_str());
+ if (index == 301 && pmsg->parameters.getCount() > 0) {
TCHAR temp[500]; *temp = '\0';
mir_sntprintf(temp, SIZEOF(temp), TranslateT("%s is away"), pmsg->parameters[1].c_str());
sMessage = temp;
- for ( int i=2; i < (int)pmsg->parameters.getCount(); i++ ) {
+ for (int i = 2; i < (int)pmsg->parameters.getCount(); i++) {
sMessage += _T(": ") + pmsg->parameters[i];
- if ( i != pmsg->parameters.getCount()-1 )
+ if (i != pmsg->parameters.getCount() - 1)
sMessage += _T(" ");
}
goto THE_END;
}
-
- if (( index == 443 || index == 441 ) && pmsg->parameters.getCount() > 3 )
+
+ if ((index == 443 || index == 441) && pmsg->parameters.getCount() > 3)
return pmsg->parameters[1] + _T(" ") + pmsg->parameters[3] + _T(": ") + pmsg->parameters[2];
-
- if ( index == 303 ) { // ISON command
+
+ if (index == 303) { // ISON command
sMessage = TranslateT("These are online: ");
- for ( int i=1; i < (int)pmsg->parameters.getCount(); i++ ) {
+ for (int i = 1; i < (int)pmsg->parameters.getCount(); i++) {
sMessage += pmsg->parameters[i];
- if (i != pmsg->parameters.getCount()-1)
+ if (i != pmsg->parameters.getCount() - 1)
sMessage += _T(", ");
}
goto THE_END;
}
-
- if (( index > 400 || index < 500) && pmsg->parameters.getCount() > 2 && pmsg->sCommand[0] == '4' ) //all error messages
+
+ if ((index > 400 || index < 500) && pmsg->parameters.getCount() > 2 && pmsg->sCommand[0] == '4') //all error messages
return pmsg->parameters[2] + _T(": ") + pmsg->parameters[1];
}
- else if ( pmsg->sCommand == _T("NOTICE") && pmsg->parameters.getCount() > 1 ) {
+ else if (pmsg->sCommand == _T("NOTICE") && pmsg->parameters.getCount() > 1) {
TCHAR temp[500]; *temp = '\0';
int l = pmsg->parameters[1].GetLength();
- if ( l > 3 && pmsg->parameters[1][0] == 1 && pmsg->parameters[1][ l-1 ] == 1 ) {
+ if (l > 3 && pmsg->parameters[1][0] == 1 && pmsg->parameters[1][l - 1] == 1) {
// CTCP reply
CMString tempstr = pmsg->parameters[1];
- tempstr.Delete(0,1);
- tempstr.Delete(tempstr.GetLength()-1,1);
+ tempstr.Delete(0, 1);
+ tempstr.Delete(tempstr.GetLength() - 1, 1);
CMString type = GetWord(tempstr.c_str(), 0);
- if ( lstrcmpi(type.c_str(), _T("ping")) == 0)
+ if (lstrcmpi(type.c_str(), _T("ping")) == 0)
mir_sntprintf(temp, SIZEOF(temp), TranslateT("CTCP %s reply sent to %s"), type.c_str(), pmsg->parameters[0].c_str());
else
mir_sntprintf(temp, SIZEOF(temp), TranslateT("CTCP %s reply sent to %s: %s"), type.c_str(), pmsg->parameters[0].c_str(), GetWordAddress(tempstr.c_str(), 1));
@@ -98,29 +98,30 @@ static CMString FormatOutput (const CIrcMessage* pmsg) else {
mir_sntprintf(temp, SIZEOF(temp), TranslateT("Notice to %s: "), pmsg->parameters[0].c_str());
sMessage = temp;
- for ( int i=1; i < (int)pmsg->parameters.getCount(); i++ ) {
+ for (int i = 1; i < (int)pmsg->parameters.getCount(); i++) {
sMessage += pmsg->parameters[i];
- if (i != pmsg->parameters.getCount()-1)
+ if (i != pmsg->parameters.getCount() - 1)
sMessage += _T(" ");
- } }
+ }
+ }
goto THE_END;
}
// Default Message handler.
- if ( pmsg->m_bIncoming ) {
- if ( pmsg->parameters.getCount() < 2 && pmsg->parameters.getCount() > 0 )
+ if (pmsg->m_bIncoming) {
+ if (pmsg->parameters.getCount() < 2 && pmsg->parameters.getCount() > 0)
return pmsg->sCommand + _T(" : ") + pmsg->parameters[0];
-
- if ( pmsg->parameters.getCount() > 1 )
- for ( int i=1; i < (int)pmsg->parameters.getCount(); i++ )
- sMessage += pmsg->parameters[i] + _T(" ");
+
+ if (pmsg->parameters.getCount() > 1)
+ for (int i = 1; i < (int)pmsg->parameters.getCount(); i++)
+ sMessage += pmsg->parameters[i] + _T(" ");
}
else {
- if ( pmsg->prefix.sNick.GetLength())
+ if (pmsg->prefix.sNick.GetLength())
sMessage = pmsg->prefix.sNick + _T(" ");
sMessage += pmsg->sCommand + _T(" ");
- for ( int i=0; i < (int)pmsg->parameters.getCount(); i++ )
+ for (int i = 0; i < (int)pmsg->parameters.getCount(); i++)
sMessage += pmsg->parameters[i] + _T(" ");
}
@@ -128,30 +129,30 @@ THE_END: return sMessage;
}
-BOOL CIrcProto::ShowMessage (const CIrcMessage* pmsg)
+BOOL CIrcProto::ShowMessage(const CIrcMessage* pmsg)
{
CMString mess = FormatOutput(pmsg);
- if ( !pmsg->m_bIncoming )
- ReplaceString( mess, _T("%%"), _T("%"));
+ if (!pmsg->m_bIncoming)
+ ReplaceString(mess, _T("%%"), _T("%"));
- int iTemp = StrToInt( pmsg->sCommand.c_str());
+ int iTemp = StrToInt(pmsg->sCommand.c_str());
//To active window
- if (( iTemp > 400 || iTemp < 500 ) && pmsg->sCommand[0] == '4' //all error messages
+ if ((iTemp > 400 || iTemp < 500) && pmsg->sCommand[0] == '4' //all error messages
|| pmsg->sCommand == _T("303") //ISON command
|| pmsg->sCommand == _T("INVITE")
- || ( (pmsg->sCommand == _T("NOTICE")) && ( (pmsg->parameters.getCount() > 2) ? (_tcsstr(pmsg->parameters[1].c_str(), _T("\001"))==NULL) : false)) // CTCP answers should go to m_network Log window!
+ || ((pmsg->sCommand == _T("NOTICE")) && ((pmsg->parameters.getCount() > 2) ? (_tcsstr(pmsg->parameters[1].c_str(), _T("\001")) == NULL) : false)) // CTCP answers should go to m_network Log window!
|| pmsg->sCommand == _T("515")) //chanserv error
{
- DoEvent(GC_EVENT_INFORMATION, NULL, pmsg->m_bIncoming?pmsg->prefix.sNick.c_str():m_info.sNick.c_str(), mess.c_str(), NULL, NULL, NULL, true, pmsg->m_bIncoming?false:true);
+ DoEvent(GC_EVENT_INFORMATION, NULL, pmsg->m_bIncoming ? pmsg->prefix.sNick.c_str() : m_info.sNick.c_str(), mess.c_str(), NULL, NULL, NULL, true, pmsg->m_bIncoming ? false : true);
return TRUE;
}
- if ( m_useServer ) {
- DoEvent( GC_EVENT_INFORMATION, SERVERWINDOW,
- ( pmsg->m_bIncoming ) ? pmsg->prefix.sNick.c_str() : m_info.sNick.c_str(),
- mess.c_str(), NULL, NULL, NULL, true, pmsg->m_bIncoming ? false : true );
+ if (m_useServer) {
+ DoEvent(GC_EVENT_INFORMATION, SERVERWINDOW,
+ (pmsg->m_bIncoming) ? pmsg->prefix.sNick.c_str() : m_info.sNick.c_str(),
+ mess.c_str(), NULL, NULL, NULL, true, pmsg->m_bIncoming ? false : true);
return true;
}
return false;
|