This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzsIRC_Format.cpp
169 lines (147 loc) · 3.46 KB
/
zsIRC_Format.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// zsIRC_Format.cpp: implementation of the zsIRC_Format class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "zsIRC.h"
#include "zsIRC_Format.h"
#include "zsIRC_Settings.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
zsIRC_Format::zsIRC_Format()
{
}
zsIRC_Format::~zsIRC_Format()
{
}
CString zsIRC_Format::Say(CString nick,CString message) {
CString s;
s += _T("<");
s += nick;
s += _T("> ");
s += message;
return s;
}
CString zsIRC_Format::Kick(CString nick,CString victim,CString message) {
CString str = _T("* ");
str += victim;
str += _T(" was kicked by ");
str += nick;
if (message.GetLength()) {
str += _T(" (");
str += message;
str += _T(")");
}
return str;
}
CString zsIRC_Format::Nick(CString oldnick,CString newnick) {
CString str = _T("* ");
str += oldnick;
str += _T(" is now known as ");
str += newnick;
return str;
}
CString zsIRC_Format::Act(CString nick,CString message) {
CString str = _T("* ");
str += nick;
str += _T(" ");
str += message;
return str;
}
CString zsIRC_Format::Mode(CString nick,CString mode) {
CString str = _T("* ");
str += nick;
str += " sets mode: ";
str += mode;
return str;
}
CString zsIRC_Format::Part(CString nick,CString host,CString channel,CString qstr) {
CString str = _T("* ");
str += nick;
if (SETUP.nShowHosts) {
str += _T(" (");
str += host;
str += _T(")");
}
str += _T(" has left ");
str += channel;
if (qstr.GetLength()) {
str += _T(" (");
str += qstr;
str += _T(")");
}
return str;
}
CString zsIRC_Format::Quit(CString nick,CString host,CString qstr) {
CString str = _T("* ");
str += nick;
if (SETUP.nShowHosts) {
str += _T(" (");
str += host;
str += _T(")");
}
str += _T(" has quit IRC");
if (qstr.GetLength()) {
str += _T(" (");
str += qstr;
str += _T(")");
}
return str;
}
CString zsIRC_Format::Join(CString nick,CString host,CString channel) {
CString str = _T("* ");
str += nick;
if (SETUP.nShowHosts) {
str += _T(" (");
str += host;
str += _T(")");
}
str += _T(" has joined ");
str += channel;
return str;
}
CString zsIRC_Format::Topic(CString topic) {
CString str = _T("* Topic is '");
str += topic;
str += _T("'");
return str;
}
CString zsIRC_Format::TopicSetBy(CString host,CString time) {
CString str = _T("* Set by ");
str += host;
str += _T(" at ");
str += time;
return str;
}
CString zsIRC_Format::TopicChange(CString nick,CString topic) {
CString str = _T("* ");
str += nick;
str += _T(" sets topic to '");
str += topic;
str += _T("'");
return str;
}
CString zsIRC_Format::NotifyJoin(CString nick) {
CString str = _T("* ");
str += nick;
str += _T(" has connected IRC");
return str;
}
CString zsIRC_Format::NotifyQuit(CString nick) {
CString str = _T("* ");
str += nick;
str += _T(" has left IRC");
return str;
}
CString zsIRC_Format::Invite(CString nick,CString channel) {
CString str = _T("* ");
str += nick;
str += _T(" has invited you to ");
str += channel;
return str;
}